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 - 2,681 through 2,700 (of 5,356 total)
  • Author
    Search Results
  • #121653

    What’s the best way to customise the Virtue Post Grid widget?

    I’d like to show my portfolio items in a list, rather than small thumbnail grid (I’m using it on the sidebar).

    Right now it shows three small thumbnails in a row – I would like to show these images in a list, to the 100% width of the sidebar, and also add a title above each image and a “click to read more” text below each image.

    Is there a widget file I can copy to my child theme, or perhaps a custom function?

    Thanks

    #121583

    Hi Kevin,

    Thanks for your input.

    At first your css wouldn’t work for screens with a min width of 1200px, but adding !important to each width fixed the issues.

    So for clarification the following css added to the advanced settings worked perfectly:

    @media (min-width: 992px){
    .main {
        width: 80% !important;
      }
    .kad-sidebar {
        width: 20% !important;
      }
    }

    Thanks again Kevin.

    #121581

    Hey Daren,

    Typically, you do not want to target the bootstrap classes (.col-lg-3, etc…) This could lead to problems down the road. I recommend changing it to this:

    @media (min-width: 992px){
    .main {
        width: 80%;
      }
    .kad-sidebar {
        width: 20%;
      }
    }

    Let me know if that works for you!

    -Kevin

    #121552

    Hi All,

    Been working on a theme that is now almost complete. I have just one mini design issue I am struggling with.

    I have a right sidebar (for menu) but the gap between the right sidebar and the main page content is too big.

    Please see to see the theme in working order

    Ideally I would like the sidebar 190px on computers, with around 20px gap between the side bar and main content (hoping to line up the content with the word landscape in the header.)

    Many thanks,

    Darren

    In forum: Membership Forums

    In reply to: HomePage Question

    #121502

    Just click “add media” and then in the left sidebar click “create gallery” that will output the grid.

    Ben

    In forum: Virtue Theme
    #121246

    In Theme Options > Home Layout you had not selected the sidebar layout. I did this for you and the sidebar is now displaying on the homepage.
    You can use this css to make your menu one line:

    @media (min-width: 1200x) {
    .col-md-8.kad-header-right {
        width: 100%;
    }
    }

    Hannah

    In forum: Virtue Theme
    #121155

    If I define the shop page as home page then the sitebar disappears.

    You just need to go to theme options > shop settings and set a sidebar for the shop page since that is overriding your home page.

    Ben

    #121148

    Sure use this css:

    @media (min-width: 992px){
        .main.col-lg-9 {
            width: 72%;
        }
        .kad-sidebar {
            width: 28%;
        }
    }

    Ben

    #121124
    function kad_sidebar_custom_template($sidebar) {
      if (is_page_template('page-custom.php'))  {
        return false;
      }
      return $sidebar;
    }
    add_filter('kadence_display_sidebar', 'kad_sidebar_custom_template');

    You would use this just change “page-custom.php” for the file of your template.

    Ben

    #121122

    I’m wanting this to affect all pages with a sidebar. At the moments it’s taking up 25% of the pages which have one, I want to widen that to 28%. Full width pages obviously need to stay 100%

    #121121

    I have a Virtue Premium child theme setup and created a fullwidth template but when I choose that template the default sidebar is present. How can I have my template not display a sidebar.

    This works but I don’t want to disable for all templates….

    function kad_sidebar_all($sidebar) {
    return false;
    }
    add_filter(‘kadence_display_sidebar’, ‘kad_sidebar_all’);

    #121110
    div.main {
        width: 72%;
    }
    
    .kad-sidebar {
        width: 28%;
    }

    You’re adding this CSS, which is effecting ALL pages, not the one that my CSS targeted.

    -Kevin

    #121109

    Hi Kevin,

    This has worked great, the sidebar is wider and flipped round to the other side for the Contact page. However, it’s cause my full-width pages to be squished into a frame that takes up 70% of the page

    Example – http://www.galaxyxtra.com/

    Do you know how to fix this?

    Thanks

    #121103

    Here is some CSS that will take care of that for the page you linked to!

    .page-id-78 div.main {
        float: left;
        width: 70%;
    }
    
    .page-id-78 .kad-sidebar {
        width: 30%;
    }

    Place into theme options> advanced settings and let me know if it works for you.

    -Kevin

    #121101

    Hi Hannah,

    It’s on the left by default, here’s the page I want to move it over to the right – http://www.galaxyxtra.com/contact-us

    Could you also let me know the best way to widen a sidebar? I think at the moment its 25%/75%, but I’d like the sidebar to be 30% of the page width

    THanks

    #121040

    Hey Clare,
    You would need to do this with page specific css. Is it just one page that you’re wanting the sidebar on the left? If so, I would set the default to the right, then if you post a link I can help with css to move the sidebar to the left for that specific page.

    Hannah

    In forum: Virtue Theme
    #121037

    Hey Holger,
    In Theme Options > Home Layout you can enable sidebar fro your homepage. Hope that helps!

    Hannah

    #121024

    I’ve setup up a Woocommerce site and set my sidebar to appear on the left, but there’s about 10 pages on my site where I’d like the sidebar to appear on the right (e.g. the about us page, contact page, ect…)

    I’ve made a custom sidebar for these pages, but I can find a way to set this to load on the right side of the page without affect the main sidebar. Is there a way to resolve this?

    Thanks

    #121021

    I use the theme for a shop woocommerce.

    I have selected a sitebar in the Virtue Premium theme setting on the right, for the start page.
    The setting at woocommerce is based on: Show products on the shop page.

    If I define the shop page as home page then the sitebar disappears. This is so for every variation. Since I start the homepage = “About us”: then the sitebar is not displayed.

    My goal is to display the sidebar on the homepage as well.

    What can I do?

    #121002

    You can edit your sidebar content from Appearance > Widgets.

    Hannah

Viewing 20 results - 2,681 through 2,700 (of 5,356 total)