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,021 through 4,040 (of 5,356 total)
  • Author
    Search Results
  • #57076

    There is an error on the page. I would need to see the admin to see what is causing it.
    I can test on my site and adding a carousel to the post works fine so check your other widgets on the page and your plugins your using.

    .sidebar h3 is how you can select the sidebar titles.
    Ben

    #57074

    I guess I am miss-understanding. You can’t have two sidebars. You can use pagebuilder to create a custom page where you would add a column and place widgets into it. The shop page is not built with pagebuilder through so you would need to create and redirect your menus to a new page that you called shop where you used page builder and added the products through a shortcode. see: http://docs.woothemes.com/document/woocommerce-shortcodes/

    Understand that by not using the shop page you won’t get pagination or the grid to list options.

    Ben

    #57061

    1. figured it out
    2. i just wanted the font changed, asked wrong. Perfect now.
    3. great
    4. i’ll try it, thank you

    please also help change the font on the sidebar titles – the H3 ones

    A Big Thank You

    #57059

    That CSS still move my sidebar to left on that page. Can I keep that sidebar on right and have a column on left where I can put Product categories menu?

    Thanks,
    Phil

    #57048

    I want to have a left sidebar on http://www.africanbusinessexpertsolutions.com/african-gift-shop/

    Thanks,
    Phil

    #57044

    Hi,

    I have made a few posts in the “normal” editor, now if i try to switch to pagebuilder, content is gone.
    So happy it can be reversed by switching back. Am i doing something wrong ?

    Under the post i inserted some post excerpt with shortcode. Can you please help changing the title there from H5 to H2 ?

    On sidebar, how can i show the pictures and title of recent posts like in the Virtue Premium Demo site ? Now i only get Titles

    Any good ideas on how to duplicate a post? Helps me keep the same format easy. Looked into some plugins but not sure. Recommandations appreciated.

    Thank you for the great work,
    B.

    #57042

    Hey,
    You can’t have two sidebars but you can use pagebuilder and add a column to the page where you can place whatever widgets you want.
    https://www.kadencewp.com/using-page-builder-virtue-premium/

    Post a link to the page you want the sidebar left and I can send along the css you need.

    Ben

    #57038

    Actually I want to have a left sidebar on just one page of my website. I have an online shop and I want to put a product category menu on my online shop page and keep the right sidebar for other purposes.

    #57034

    Thanks Ben, I used that CSS and the sidebar has moved from right to left. How can I have two sidebar? I want to create a left sidebar and still keep the right one.
    Next time I will create a new topic. Sorry I was not aware of that.

    Thanks

    #56995

    Hey,
    You can make as many menus as you want. There are 5 preset locations to add menus besides all the widget areas.

    If you want your sidebar to be on the left side you can use this css. (found here: https://www.kadencewp.com/post-frequently-asked-questions/)

    @media (min-width: 992px) {
    body .main.col-lg-9 {float:right;}
    }

    You can add a menu widget to your sidebar or a woocommerce category widget to your sidebar in the appearance > widgets page.

    Please in the future create your own topic rather then posting in one marked as resolved. Thanks!

    Ben

    #56981

    Hi, it works! I only had to add the specification of the smaller screen size where to apply the 100%!
    FYI, I was adding this CSS in order to always have that primary sidebar widget centered.
    I had, for larger screens 30%, for medium screens 50% and I didn’t realize the impact on smaller screens.

    @media (min-width: 1200px) {
       #content .main.col-lg-9 {
          width: 70%;}
       #content aside.col-lg-3 {
          width: 30%; }  	
     } 
    
    @media (max-width: 992px) {
      #content aside.col-lg-3 {
         width: 50%;
         margin-left: auto;
         margin-right: auto;}  	
     }  

    and now, thanks to you, I will add for smaller screens:

    @media (max-width: 767px) {
       #content aside.col-lg-3 {
         width: 100%;
         text-align: center;  } 
     }

    I am not sure if all my code is optimal written this way, but it works. Thanks again!

    #56962
    This reply has been marked as private.
    #56960

    Hi! I inserted a Widget text in my Widgets->Primary Sidebar. I gave it a title and in the content I inserted a link to another site, which is my booking engine, appearing as a block.
    On desktop screens, the title as well as the block are centered in the sidebar as desired.
    When I reduce the screen width to mimic a smaller device, as well as on my iPhone 5, the title of the sidebar is centered aligned but the block is right aligned, which results on missing information. I tried quite a few things to make it centered, without luck…
    Is there a way to make it appear centered? I think I cannot make it a bit smaller (although I which I could) but at least, centered aligned?
    I will send you an admin login in a private message. My site is in maintenance mode for now.
    Thanks!

    #56938

    You can download a child theme here: https://www.kadencewp.com/wp-content/uploads/2014/02/virtue_premium_child.zip

    and you can add this function into the child theme functions file:

    add_filter('kadence_display_sidebar', 'search_sidebar');
    
    function search_sidebar($sidebar) {
      if (is_search()) {
        return false;
      }
      return $sidebar;
    }

    That will give you a fullwidth search page.

    As for images in your theme options > blog settings what is your default post summary set to? use “portrait image” and featured images will automatically show.

    The content is set by the excerpt of the page or post. You can’t display full content in a search result.

    Ben

    #56928

    I have the Virtue Premium theme and would like to remove the sidebar from the search result page. Is that possible? Also is it possible to add pictures and more text to the search result page somehow?

    #56663

    Hi Ben

    I changed my sidebar background colour with this code:

    aside.col-md-4 {
    background:#525252;
    }

    But now the “Add to basket” line has re-appeared on the products.

    I added the hide basket code you suggested again and it worked (again) – but then the sidebar background colour disappeared.

    seems like these two bits of code conflict with each other.

    #56636

    Hey,
    It’s not an option unfortunately. The “image carousel” is set up to be above the sidebar but thats it. You can do this through a child theme through. You just need to edit the templates/content-single.php in a child theme and move the header photo call up near the top of the template.

    Ben

    In forum: Virtue Theme

    In reply to: Mobile Version

    #56624

    Hey,
    You can remove the sidebar with this css:

    @media (max-width: 767px){
     #ktsidebar {
        display: none;
        }
    }

    I’m not sure what background your referring to? I also see the categories centered?

    Ben

    #56597

    Hi,

    I’m using a banner on my blogpagess and a sidebar. Now the sidebar starts at the header and i’d prefer to have it start at the height of the content and make the banner full width. Is that easily done?

    Hope you can help.

    Thanks

    Link: ining/liefdeshonger/

    In forum: Virtue Theme
    #56563

    Hi, I’ve got some problems with the mobile version of my site especially with elements of custom css i’ve created. I’d like to hide some background url like shop and in the shop page i’d like hide the sidebar. Can anyone help me? http://www.gustomenta.com

Viewing 20 results - 4,021 through 4,040 (of 5,356 total)