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

    Looks like you have tons of html missing on the sidebar. That can be caused if your using a plugin to override. I can’t really give you the correct css because your sidebar isn’t showing the right output. (for example your missing the widget title h3 tags. There are just no tags?)

    I suggest deactivating your plugins till you get the sidebar working with the default post titles and standard spacing then T can help with css for the widget.

    Ben

    In forum: Virtue Theme
    #59217

    I have another question about the site, not sure whether to start a new post or on this one.

    I would like to edit the sidebar for the shop pages; particularly I would like to change the CSS of the main categories to have a background color the same as the header #21b2e7 and font as white to help distinguish them from the subcategories. Not sure the best way to go about it. I am also open to other suggestions for this many categories and subcategories as I only have about 5% of my brick-and-mortar store listed and have a lot more product to add still. Thanks!

    In forum: Virtue Theme
    #59091

    Everything that can be updated has been updated. I tested it in the primary sidebar, and it displays only the title “Product Add-Ons” and the product images. It’s not formatted well there. I tested it there by way of a widget that showed up that can be added to a sidebar. I don’t have a sidebar set for the cart page, but in any case it looks like it’s trying to work under the cart, where I’d like it to work. Seems buggy all the way around.

    In forum: Virtue Theme
    #59082

    Hi Max,
    Are you using the latest versions of everything? Have you tried testing this in a sidebar to see if it works there?

    Hannah

    #59049

    I found some posts related to similar topics, but did not find anything about this. On the site currently being built at http://www.guided-imagery-book.com (almost complete) I have the plugin Cart Add-Ons (not Product Add-Ons). It places designated up-sell products just below the cart on the Cart page. I currently have it configured to display several default products there no matter what you order.

    The products are there, but they are invisible. There is a big area under the cart where they should appear. If you mouse over the area where they should appear, you can see that they produce links. If you place any product in the cart you’ll “see” this.

    Note that in the detail about the plugin on the plugins page, it mentions that this appears in the “sidebar”. But the screen shot on the woo site shows it directly under the cart.

    Any idea why this is happening?

    In forum: Virtue Theme

    In reply to: New Page Template

    #58997

    Hey,
    You would have to create the function that looked for a sidebar id for that new page template. Would look like this in your child theme functions.php file:

    add_filter('kadence_sidebar_id', 'custompage_sidebar_id');
    function custompage_sidebar_id($sidebar) {
    if(is_page_template('directory-listings.php') ) {
          global $post;
            $sidebar_name = get_post_meta( $post->ID, '_kad_sidebar_choice', true ); 
            if (!empty($sidebar_name)) {
                $sidebar = $sidebar_name;
            } else {
              $sidebar = 'sidebar-primary';
            } 
    }
    return $sidebar;
    }

    Ben

    In forum: Virtue Theme
    #58951

    Hello! I need a little help, please.

    I created a new page template called Directory Listings and copied the code from page-feature-sidebar.php. I added my new template (page-directory.php) to the code for the Meta Boxes. When adding a new page, the Page Title and Subtitle and Feature Page Options work fine but the Choose Sidebar does not work. It appears and allows me to select the sidebar but when viewing the page, it shows the primary sidebar (subtitle and other options appear as expected).

    I switched back to the Feature – Sidebar template, and the selected sidebar appears as expected. I suspect I missed a step to make the sidebar work. Can you point me in the right direction? Thank you.

    #58886

    Hi,

    1. I’d like to change the link color in a text widget. My theme has default settings for link colors but I want to override these default settings for one word that I use in a text widget. I know how to use CSS and HTML but I don’t understand how I have to use the CSS classes.

    2. Where can I change the CSS of the sidebars? Can I just add some code in the CSS stylesheet?

    I hope you guys can help.

    Thanks

    In forum: Virtue Theme

    In reply to: Slide out sidebar menu

    #58825

    You have added this css:

    .sidebar ul.menu {
        margin: -13px;
    }

    If you want to keep change it to this:

    .sidebar ul.menu {
        margin: -13px -13px 0;
    }

    Ben

    In forum: Virtue Theme

    In reply to: Slide out sidebar menu

    #58795

    No border, just margin. see here:

    .sidebar .widget-inner .menu li a {
    display: block;
    background-color: transparent;
    border-bottom: 1px solid #444;
    margin-bottom: 4px;
    padding: 0 5px;
    color:#444;
    }

    remove the highlighted line.

    Ben

    In forum: Virtue Theme

    In reply to: Slide out sidebar menu

    #58786

    Hi Ben

    I have adjusted the css a little. The only thing I can’t quite do is fill each menu item completely. There is a small border at the top when you highlight a menu item. I will keep trying though….

    .kad-sidebar {
    background-color: #f2f2f2;
    padding-bottom: 10px;
    padding-top: 10px;
    }
    .sidebar ul.menu {
    margin: -15px
    }
    .sidebar .widget-inner .menu li {
    border-bottom: 0;
    }
    .sidebar .widget-inner .menu li a {
    display: block;
    background-color: transparent;
    border-bottom: 1px solid #444;
    margin-bottom: 4px;
    padding: 0 5px;
    color:#444;
    }
    .sidebar .widget-inner .menu li a:hover, .sidebar .widget-inner .menu li.current-menu-item > a{
    color:#fff;
    background-color: #8a8a8a;
    }

    In forum: Virtue Theme

    In reply to: Slide out sidebar menu

    #58760

    add this css and let me know if thats is at all what your thinking:

    .kad-sidebar {
        background-color: #f2f2f2;
        padding-bottom: 10px;
        padding-top: 10px;
    }
    .sidebar ul.menu {
        margin: 10px 10px;
    }
    .sidebar .widget-inner .menu li {
        border-bottom: 0;
    }
    .sidebar .widget-inner .menu li a {
        display: block;
        background-color: transparent;
        border-bottom: 1px solid #444;
        margin-bottom: 4px;
        padding: 0 5px;
        color:#444;
    }
    .sidebar .widget-inner .menu li a:hover, .sidebar .widget-inner .menu li.current-menu-item > a{
        color:#fff;
        background-color: #444;
    }

    Ben

    In forum: Virtue Theme

    In reply to: Slide out sidebar menu

    #58747

    Hey Ben

    I would like to change the background colour of the side menu and also the roll over state etc. I have different custom menus that correspond the the different sections on my site. I just want the sidebar to look different from the body of the page.

    Does that make sense?

    I can’t find the correct theme to edit the css

    Thanks

    Mark

    In forum: Virtue Theme

    In reply to: Slide out sidebar menu

    #58745

    Hey,
    1. What does this mean? Are you wanting to change the menu or are you wanting to give it a different color on a page by page basis? You can change which menu is shown on a page by page basis using the sidebar page template and changing what sidebar is used.

    2. Don’t know what you mean by that either. Maybe you have an example of a site that is doing what you want? I can tell you the wordpress menu widget isn’t going to have any animation but there might be a plugin that does what you want.

    Ben

    #58704

    Hi
    I would like to be able to do either of the following:

    1. Custom style the sidebar menu on each of my pages
    2. Change the menu so that it slides in and out when clicked

    Is this possible? here is a link to a page on my site:

    Thanks in advance

    Mark

    In forum: Virtue Theme
    #58695

    Hi Ben,

    All your codes worked well, thank you.

    Could you help me with these issues:

    1. Where do I activate the reviews for the products? I just couldn’t seem to find it.

    2. On an individual product page:
    a) Where can I change the weight of the font of the attributes/ variations ? I dont want it to be bold.
    b) I have used tab buttons for the attributes …. I’d like the text in those boxes to be normal instead of bold…. and instead of the whole box being dark grey when chosen, I prefer just the border to go to dark grey (like it does when one hovers) and a small little tick mark in white to come on the right lower corner with d same grey background .. There can be a small little triangle on that edge that is in dark grey, so that the little arrow fits on it.

    3. For the pages in general that are full width in nature, I’d like to reduce the padding on either side of the page, to increase the width by 40% more on each side, so I have some more space, specially if I want to include a sidebar on the product page.

    4. On an individual product page, the main portion is divided into two with a ratio of approximately 40:60 ….That is 40% for the featured image and 60% for the text. I would prefer that to be around 30:70 ….so the picture is a bit smaller in size and I have more place for text on the right. This way, the product video which will be below will also be visible on a page easily.

    5. With regards to the Mega Menu …to increase the number of posts to 5 .. the author gave me a code to be inserted in the virtue child themes php file… The code is as below:

    function megamenu_posts_per_page( $posts_per_page, $megamenu_type, $megamenu_args ) {
    return 5;
    }
    add_filter( ‘wpmm_posts_per_page’, ‘megamenu_posts_per_page’, 10, 3 );

    I did insert the code correctly, but no change is occurring in the menu. I was wondering what could be the reason for it not getting activated. Previously, I had made changes directly to their core files and it worked perfectly. Could it be something I’m missing within the child theme , for it not overriding the codes from the core file?

    6. On the cart page, if I delete all the items from the cart, I get a bab the says “Return to Shop” …. Where in the settings do I have a chance to link this tab … I like it to go back to the home page.

    7. On the category page;
    a) I would like to correct the same issue of spacing with regards to the price : I would like it spaced a bit in between like [$ 2 – $ 4].
    b) In between one line of 5 products and the next …I have a gap of 60px.(margin-bottom: 60px) I would like a fine line running across at 40px ……so that there is twice the amount of gap from the edge of the top products, and one third the gap from the second line of products. Just to create a sort of clear distinction between the products, since all my product borders are removed. I want it to run through the width of the page ….minus the padding that will be at the sides.

    8. The SEARCH button on the main menu, when dropped down is too big it height and narrow in width, and the font too large… How can I make it to look like the bar that drops down from the Cart TAB when the cart is empty…..I want it looking a bit daintly like that.

    9. Needed a bit of guidance on a multi- language plugin …. does qTranslate-X work well with Virtue?

    Awaiting your reply.

    Thanking you in anticipation.

    Michelle

    #58683

    Hi David,

    i’m not the support here, but i’ll share my experience:

    I installed the original facebook plugin, made by facebook.
    So you get shortcodes and widgets that you ca insert anywhere, like footer widget or like/share at the end of a post.
    Here is a site i made using this plugin – check footer, sidebar and some posts
    http://training-menschundhund.de/

    If you still want to insert JS you also can use a plugin that “injects” it in the Header/footer.
    Check the plugin installation from WordPress panel and choose one with many installs 😉
    Search for “Header Footer script”

    Just another happy user,
    B.

    #58534
    .sidebar #kadence_gallery_widget-4 .kad_caption_inner {
        color: #000;
    }
    .sidebar #kadence_gallery_widget-4 .gallery_item:hover .kad_caption {
        background: rgba(255,255,255,.4);
    }

    That should be what you need. ^

    Ben

    #58451
    This reply has been marked as private.
    #58319

    So just fyi you can set the width and height in the post options > There you could put 846 for example.

    http://docs.kadencethemes.com/virtue/#blog_posts

    But in a child theme you can also copy the templates/content-single.php and in the top line of the page set the “$slide_sidebar” variable to 846.

    Ben

Viewing 20 results - 3,961 through 3,980 (of 5,356 total)