Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

Search Results for 'sidebar'

Home / Forums / Search / Search Results for 'sidebar'

Viewing 20 results - 1,601 through 1,620 (of 5,356 total)
  • Author
    Search Results
  • #187393

    Try changing this:

    .sidebar {
    background: #efefef;
    }

    to this:

    .sidebar {
    background: #efefef;
    padding: 10px;
    }

    Is that what you mean?

    Hannah

    #187371

    In Theme Options > Shop Settings have you chosen the full page layout beside “Display the sidebar on Shop Page?”

    Hannah

    #187292

    Hi,

    I’m using Virtue Premium and WC Marketplace to allow users to create shops on my page. When a user goes to view their shop a sidebar is showing. How do i remove this? I have attached a picture below.

    Thanks

    Graham

    #187282

    Hi Kevin

    The background colour does show up now, but the padding inside the sidebar has dissapeared (padding all around the inside of the sidebar)
    I’ve had to remove the background colour, as the client is picky and won’t like what they see.

    Please advise further?

    #187257

    I wanted to know if you could help me with this warning. I deactivated a custom sidebar plugin and added a sticky widget plugin a few days ago, but not sure if that triggered this warning. Any help/direction on this would be greatly appreciated!

    Warning: Missing argument 2 for kt_custom_menu::kt_edit_admin_walker(), called in /home/saturda5/public_html/wp-includes/class-wp-hook.php on line 286 and defined in /home/saturda5/public_html/wp-content/themes/virtue_premium/lib/custom-nav.php on line 107

    In forum: Virtue Theme
    #187222

    You can enable a sidebar on just some posts through the post edit. In your post settings, you can choose to show or hide a sidebar and choose which sidebar to show.

    Is that what you are thinking?

    Outside of that page builder would be your next option you can use it to add two columns to your post and add whatever content you want in the right or left columns.

    finally to be clear you can’t move the themes recent post output outside of the footer of your post. It’s a carousel that isn’t designed for a sidebar and can’t be moved like that.

    Ben

    In forum: Virtue Theme
    #187215

    Hey,

    I’m not sure I’m following. Are you wanting the sidebar to be fullwidth below your post content? Or smething different?

    Can you link to some posts so that I can try some solutions?

    -Kevin

    #187212

    Hi

    I’d like to have the sidebar appear on the side for some posts, the bottom for others.

    Can I do this in Virtue?

    Thank you.

    #187182

    Hi

    I have this CSS in place but not showing.
    Have cleared cache etc.

    .sidebar {
    background: #efefef;
    }

    In forum: Virtue Theme
    #187085

    Guessing at what you want, try this css:

    .sidebar .kt-content-carousel .kt-intrinsic {
        padding-bottom: 60% !important;
    }
    .sidebar .kt-content-carousel .grid_item {
        margin-bottom:0;
    }
    .sidebar .kt-content-carousel .bcarousellink {
       display:none;
    }
    .sidebar .kt-content-carousel .kt-intrinsic > div {
        position: absolute;
        height:100%;
        width: 100%;
    }
    .sidebar .slick-slide img {
        max-height: 100%;
        max-width: 100%;
        width: auto;
        margin: 0 auto;
    }
    In forum: Virtue Theme
    #187081

    Hey,
    Please remove this css:

    .sidebar .slick-slide img, .sidebar .slick-list {
        max-height: 240px;
        max-width: 200px;
        margin: auto;
    }

    We can do it differently. But I need to know what you’re expecting first. You have a massive range of image ratios in this carousel. The carousel is going to set the height based on the tallest images. So when your image is tall it will match and then when your image is short you have a gap.

    This prevents your sidebar for jarringly jumping up and down based on the image. For examples look at these two images so it’s clear:

    So do you want all the images to be forced to the height of your shortest, smallest images?

    Ben

    In forum: Virtue Theme
    #187033

    1. Try adding this:

    .sidebar .widget {
        margin-top: 0;
    }

    2. Change this:

    .sidebar .slick-slide img, .sidebar .slick-list {
        max-height: 240px;
        max-width: 200px;
    }

    to this:

    .sidebar .slick-slide img, .sidebar .slick-list {
        max-height: 240px;
        max-width: 200px;
        margin: auto;
    }

    Hannah

    In forum: Virtue Theme
    #187024

    Thanks, Hannah.

    1. I now have the following, but there is still space between it an the next widget.

    .sidebar .slick-slide img, .sidebar .slick-list {
    max-height: 240px;
    max-width: 200px;
    }

    2. How do I center the image?

    In forum: Virtue Theme
    #187013

    Hi Grace,
    Try adding this to your custom css:

    .sidebar .slick-slide img, .sidebar .slick-list {
        max-height: 175px;
    }

    Hope that works for you!

    Hannah

    #187010

    Hi,
    My website is .
    I have the carousel widget on the sidebar.

    1. I only want to display the image, but it is leaving a huge space underneath.

    2. I would also like to make the image smaller if possible.

    Here is my custom CSS so far:

    .sidebar .entry-content p {
    display: none;
    }

    .sidebar .entry-title {
    display:none;
    }

    .sidebar span.postday.kad-hidedate {
    display: none;
    }

    Thank you!

    #186998

    Hi Hannah

    The image in the sidebar (book image) is still left aligned. Should be centred 🙁

    In forum: Virtue Theme

    In reply to: Sidebar Position

    #186971

    Hey,
    Are you aware you adding three columns in pagebuilder in your content making the top part of your content smaller then it would normally be?

    Is that intentional?

    I’m not sure I understand what you want in regards to the sidebar it but sounds like you want it positioned along the screen when the screen size is large enough. Please try this css:

    @media (min-width: 1550px){
    .single-post #ktsidebar {
        position: absolute;
        max-width: 360px;
        left: 0;
        top: 60px;
    }
    .single-post #ktmain.col-lg-9 {
        float: none;
        width: 75%;
        margin:0 auto;
    }
    }
    @media (min-width: 1800px){
    .single-post #ktmain.col-lg-9 {
        width: 100%;
    }
    }

    Ben

    In forum: Virtue Theme

    In reply to: Sidebar Position

    #186967

    I tried the css, but it only made the text and images fill the content are, instead of widening the overall content section. So the sidebar ended up staying in the same position, leaving a large empty area to the left.

    If it can’t be done, it’s not the end of the world, just thought it might look cleaner.

    In forum: Virtue Theme

    In reply to: Sidebar Position

    #186934

    Hi Kevin,

    Sorry I wasn’t more clear. Yes, I was hoping to align the sidebar along the left side of the page. If that’s not possible, as you mentioned it might be, would it be possible to expand the content? I’m just hoping to widen content.

    In forum: Virtue Theme

    In reply to: Sidebar Position

    #186930

    hey,

    I’m not sure I’m following. Are you wanting to eliminate the space between the content and the sidebar, or do you want to align the sidebar all the way to the left on the page?

    I’m not sure if the latter is possible, but you could reduce the space between the content and sidebar with CSS.

    Just let me know which one you’re after and we’ll go from there.

    -Kevin

Viewing 20 results - 1,601 through 1,620 (of 5,356 total)