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 - 3,621 through 3,640 (of 5,356 total)
  • Author
    Search Results
  • In forum: Virtue Theme
    #76351

    Hi Fabrizio,
    If you’re using the feature sidebar page template and you have the feature options set to image you should be able to make it fullwidth with this css:

    .container.pageheadfeature.postfeat {
        width: 100%;
        padding: 0;
    }

    Just paste that in your custom css box in Theme Options > Advanced Settings. Another option is to use a full width kadence or revolution slider.

    Hannah

    #76347

    I haven’t really understood how to go about what you have suggested …. but I think I might have found a solution …. WooSidebars plugin. I will try it out and see how it works. I think it should work out well?

    In forum: Virtue Theme
    #76324

    You could use the custom menu widget in the sidebar. Would that work for you?
    There isn’t a built in option to have two sidebars, but if you wanted the sidebar on the left instead of the right you could use this css:

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

    You would just paste that into your custom css box in Theme Options > Advanced Settings. If you want that only to apply to the shop page you just need to add the page id.
    If you really want two sidebars you could use page builder and create a row with three long columns, the middle being the largest, giving the outside columns a sidebar effect. Does that make sense?

    Hannah

    #76218

    Dear support,

    Is there a way to have the feature image of a post (that includes a sidebar) going fullwidth? I am using Virtue Premium.
    It would be a big plus!!!

    Thanks

    Fabrizio

    #76168

    Hey Francis,
    Unfortunately there isn’t a built in option for this. One workaround would be to use a sidebar template, choose your custom sidebar, and add your product category via a shortcode. Does that work for you?

    Hannah

    In forum: Virtue Theme

    In reply to: Product Page help

    #76145

    1. I don’t recall giving you that css? Try using this:

    @media (min-width: 1200px) {
    a.select2-choice {
        width: 365px;
    }
    }

    Does that work for you?

    2.

    .sidebar .woocommerce ul.product_list_widget li img {
        float: left;
        margin-right: 10px;
    }

    Hannah

    #76101
    This reply has been marked as private.
    #76045
    This reply has been marked as private.
    #76039

    Hello,

    As the website gets more complicated, I feel its best to add different sidebars to different product categories …

    How can I do that?

    In the theme options, although I can make different sidebars, I cannot input it anywhere for the product category sections…. I’m guessing its only possible on individual pages.

    Could you help?

    In forum: Virtue Theme

    In reply to: Image size

    #75990

    Hey,

    Images – can you send a login so I can see your settings? you can use Set as private reply.

    There isn’t a way to make the related products carousel a list in a sidebar of your product pages. At least there isn’t an option for this. You can code something out that would do this or if you don’t know coding hire someone to code it out. You would need to override the woocommerce product template and keep it updated as woocommerce updates.

    Just fyi you can create different sidebars for your products and assign for each product making possible to add product widgets into a sidebar on your product page and change it from product to product.

    Ben

    In forum: Virtue Theme

    In reply to: Product Page help

    #75880

    1. Try adding this:

    @media (min-width: 1200px) {
    .product .entry-summary .kad_add_to_cart {
        width: 360px;
        float: right;
        margin-left: 15px;
    }
    .single-product .summary a.add_to_wishlist {
        width: 80%;
        float: right;
        margin-top: 30px;
    }
    .select2-container.kad-select {
        width: 375px !important;
    }
    }

    2.

    div.product form.cart div.quantity {
           width: 67px;
    }

    3. Try also adding this:

    .product_value .select2-container .select2-choice>.select2-chosen {
        font-weight: 600;
    }

    4.

    .sidebar .form-search .search-query {
        margin-top: 40px;
    }

    5. This should make the sidebar headings bold:

    .sidebar h3 {
        font-weight: 800;
    }

    And this would remove the recently viewed product titles:

    .sidebar span.product-title {
        display: none;
    }

    Hannah

    #75862

    Where can i disable the side bar for all pages?

    appreciate your helps.

    #75853

    I got this to work by setting the page template to Sidebar and adding this code in the Advanced Settings:


    @media
    (min-width: 992px){
    #ktsidebar.kad-sidebar {width: 35%}
    .main.col-lg-9 {width:65%;}
    }

    Still not sure why the Default Template won’t work or if this is even the best way to handle this, that’s why I didn’t change this to Resolved. I figured I’d let you guys weigh in on it first. Thanks!

    #75821

    I’ve placed an iframe in my primary sidebar with a Facebook feed, something I have in place on a few other sites. But on this particular site and page the side bar wraps to the next line under my contact form rather than appearing in the right sidebar. I tried changing the page from Default to Sidebar but then the sidebar goes off the main content background. I’d be happy with a solution using either template to either get the sidebar down the right side with Default or pull it back on the page with Sidebar.

    The page is HERE.

    In forum: Virtue Theme

    In reply to: Product Page help

    #75793
    This reply has been marked as private.
    In forum: Virtue Theme

    In reply to: Product Page help

    #75752

    Hey Francis,

    1. Try this css:

    @media (min-width: 1200px) {
    .select2-container.kad-select {
        width: 100%;
        width: 375px;
    }
    .product .entry-summary .kad_add_to_cart {
        width: 380px;
    }
    #enquiry input.wpi-button {
        width: 100%;
    }
    .yith-wcwl-add-to-wishlist {
        width: 100%;
        text-align: center;
    }
    .single-product .summary a.add_to_wishlist {
        width: 100%;
    }
    }

    Is that kinda what you were thinking?

    2. Not sure I’m following?

    3.

    .select2-container .select2-choice {
        color: #000;
    }

    4.

    .sidebar .form-search .search-query {
        margin-bottom: -15px;
        width: 275px;
    }

    5.

    .sidebar span.amount {
        display: none;
    }

    6.

    @media (min-width: 1200px) {
    aside#ktsidebar {
        width: 20%;
        float: right;
    }
    }

    Hope that’s helpful!
    Hannah

    #75735

    Hey,
    Try using this css:

    .sidebar h3 {
        display: none;
    }

    Does that work for you?

    Hannah

    In forum: Virtue Theme

    In reply to: embed video in post

    #75707

    All of those options can be found when you add a new post, right below the main content area of the post. There should be an area labeled “Standard Post Options,” here is where all the options are. When you place the video in the header, your post will look like this:

    http://themes.kadencethemes.com/virtue-premium/youtube-video-post/

    Or are you wanting to display the video in the sidebar of the post? That will be more complicated and you’ll have to create a specific sidebar for each post containing a widget with the embedded video. I have never done that but if it’s what you’re wanting then I’ll walk you through it.

    In forum: Virtue Theme

    Topic: Sensei Help

    #75663

    Hello I have a problem within my course there is sidebars once i click into a module on my courses. Could you help me to remove them thank you

    In forum: Virtue Theme
    #75648

    Hello,
    Could you please help me with this?

    Individual Product Page:
    1. All the five buttons …. from size …to add to wishlist …. I want them all to start at the same point ( preferably from the size button starting point ) …and end at the page end … so they are all the same size.

    2. Point 1 above … will make the gap between the No. of pieces and Add to cart larger ….so that has to be adjusted by increasing the size of the No. of pieces box.

    3. The default attribute in the box…has a very light font colour … how can I make that darker?

    4. The sidebar has “search for products” …which I want aligned with the product picture. At present its too high. Also I want it to run the full length of the sidebar.

    5. Can I have the price removed from being shown in the recently viewed products on the sidebar?
    Or maybe ….Is it possible to have just the pictures of the recently viewed products with (or without) the name underneath it like it is for the related products carousel … 3 pictures next to each other per line …So I can have 2 lines with 6 pictures. This would look better in the mobile version too …I’m guessing.

    6. Reduce the width of the sidebar by 10% …so it move a little more to the right.

    Thanking you.

Viewing 20 results - 3,621 through 3,640 (of 5,356 total)