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 - 4,901 through 4,920 (of 5,356 total)
  • Author
    Search Results
  • #21217

    I’ve done that Ben, and the sidebar is still present (or it’s just not scaling the post excerpt across the content area properly for some other reason)

    https://lawfactory.ca/category/news-and-press/

    #21155

    Hey Henning, as Ben said above- set your page template to pagebuilder. You can do this on the right sidebar of your edit page.

    Hannah

    In forum: Virtue Theme

    In reply to: Align text home page

    #21011

    Hey, you can use this to align the “Pic of the Day”

    .sidebar h3 {
    text-align: center;
    }

    Just paste it into your custom css box in theme options > advanced settings.
    “Blog Post” already seems to be aligned? But this is the css selector you would use to edit it- .hometitle {}
    Hope that helps ya!
    Hannah

    #20998

    Hey,
    That is a theme style… you can add this css to change:

    .sidebar .widget {
    margin-top: 10px;
    }

    Ben

    #20894

    Great, thanks, one more question regarding the Shop-Sidebar, how do I align it to the Left?

    In forum: Virtue Theme

    In reply to: LearnDash Intigration

    #20884

    Hey, in your individual course post edit pages have you set featured images (right sidebar)? And in theme options > blog settings have you set the blog post summary default to an image?

    Hannah

    #20804

    I don’t understand what you mean. Are you meaning like an ajax filter… used here: http://themes.kadencethemes.com/virtue-premium-3/shop/

    top of the right sidebar.

    Do you have a link for an example?

    Ben

    #20803

    Hello,

    I didn’t make myself clear – sorry, I meant the actual dynamic category filter on the Shop page, to change it to a dynamic category menu filter as presented in the previous message, in this case the sidebar should not appear in this section.

    Kind regards,

    #20780

    Hey, You mean just a category menu? in a sidebar?

    Ben

    In forum: Virtue Theme

    In reply to: Sidebar on 404

    #20678

    Thanks, Ben.

    Nobody intends it, but people have requirements to meet. 😉 My requirement is to present a “useful” 404 to visitors including popular links, etc (which is already done), as well as the site resource quicklinks. Those are in the sidebar.

    I will add the function!

    In forum: Virtue Theme

    In reply to: Sidebar on 404

    #20677

    You would have to add a custom function in a child theme or a functions plugin. You intend on people seeing a 404 page often?

    here is the function:

    add_filter('kadence_display_sidebar', 'kad_sidebar_on_404_page');
    function kad_sidebar_on_404_page($sidebar) {
    if (is_404()) {
        return true;
      }
      return $sidebar;
    } 

    Ben

    In forum: Virtue Theme
    #20676

    How do I enable a sidebar on the 404 page? I don’t see it as a theme option, and the 404 template itself doesn’t include a sidebar.

    #20394

    So the parallax isn’t really set up for pages with a sidebar but you can get it to work.. add this css:

    .main.col-lg-9 .panel-row-style-wide-parallax {
    margin-left: 0px!important;
    margin-right: 0px!important;
    padding-left: 0!important;
    padding-right: 0!important;
    }

    Ben

    #20294

    How can I remove side bar from page?

    #20257

    If you just want to add an image, then you need to add in the footer. The checkout page doesn’t have a sidebar. So just add an image to your footer widget.

    Ben

    #20170

    Thanks Hannah but no, that doesn’t do it. On the free version of Virtue, I had the list of theme options available but when I clicked on each one nothing happened (no ability to go in and do/see anything it’s just the list “main settings” “topbar settings” “slider settings” and so forth. Hover of the particular setting and see it highlight but when clicked on, nothing happened. That’s still the way the free version is. The premium version just doesn’t even show “theme options” in the WP sidebar or description of theme. Gone.

    I went through the process with the person who admins the serve of making sure the memory settings were more than adequate on the server and everything else the FAQ on the Kadence site notes on this issue. Still no go.

    I’d appreciate some help from the Kadence Themes folks — I certainly hope they’re going to be responsive.

    Thanks again, Hannah for your helpful suggestion. I already had played around with redux framework (demo) but didn’t know it would be required for Virtue? I think you were just suggesting a work-around, right?

    #20108

    There isn’t an option for recently viewed as a carousel option. You can add the woocommerce widget to your sidebar and it will be populated at the user views products but for the home page visitors would show up without having seen any products.

    Ben

    #19942

    Hi Ben, thank you for the information. The above CSS changes didn’t have an effect on the type of menu shown or the location of the sidebar. I hope you can natively support this option in the future. It is a bit awkward for the site to change so much when rotating the iPad.

    #19824

    A ipad portrait view is 768px wide. So just fyi all your menu styling is set for 960 and won’t work on 768 unless you change.
    But you can force the menu to show for ipad with this css:

    @media (max-width: 992px) {
    #mobile-nav-trigger {
    display: none;
    height: auto;
    }
    #nav-main ul.sf-menu, .nav-main ul.sf-menu {
    display: block;
    }
    #nav-main, .nav-main {
    margin-bottom:10px;
    }
    }
    
    @media (max-width: 767px) {
    #mobile-nav-trigger {
    display: block;
    height: auto;
    }
    #nav-main ul.sf-menu, .nav-main ul.sf-menu {
    display: none;
    }
    #nav-main, .nav-main {
    margin:0px;
    }
    }

    As for forcing the sidebar, you can do that with this css..

    @media (min-width: 767px) {
    .kad-sidebar.col-md-4 {
    width: 33.33333333%;
    float:left;
    }
    .main.col-md-8 {
    width: 66.66%;
    float:left;
    }
    }

    To be clear, These aren’t really supported, or tested.

    Ben

    #19820

    I have a site using boxed layout with a max width of 960px. I used the following to set this limit:

    @media
    (min-width: 960px) {
    .container {
    width: 960px;
    }

    When viewing the site in the iPad’s landscape mode, I see the regular primary navigation menu, and the site has the same layout as on the computer, which is good.

    However, when I view the site in the iPad’s portrait (vertical) mode, the menu changes to become the mobile menu. The site switches to the mobile layout with items stacked vertically instead of having the sidebar.

    I don’t mind the different placement of the sidebar content as much, but I am wondering, is there a way I can force the site to show the regular primary menu instead of the mobile menu in the iPad’s portrait (vertical) mode? Is it possible to still display the sidebar in the iPad’s portrait view, too?

    Note: Currently I have some custom CSS on the primary menu items to make them fit the menu bar:
    padding: 6px 12px 6px 12px;

Viewing 20 results - 4,901 through 4,920 (of 5,356 total)