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

    In your theme options > products settings you have the sidebar set to “yes display”?

    Can you send a temp login so I can see?

    Ben

    In forum: Virtue Theme
    #61368

    Wordpress already has a login page. If you using woocommerce they add a login page. If you want to use the wordpress but not on there page you can use a plugin like: https://wordpress.org/plugins/login-sidebar-widget/

    Ben

    In forum: Pinnacle Theme

    In reply to: Drop down menu

    #61351
    This reply has been marked as private.
    #61318

    Ah, ok that is clear now. I have found the option.

    When i set the option: “Display sidebar” to yes, the sidebar is displayed in the product view on the frontend.
    The previous value was: “Default value”.

    But the default value is set to display the sidebar, and that is not working. Why?

    #61277

    Hi Gillian,
    So the widgets you named do not have borders. Are you wanting to add borders to them? Or do you want to increase the width of the borders on the widgets in the sidebar?

    Hannah

    In forum: Virtue Theme
    #61252

    1. So essentially you want to make the sidebar the height of the page. Is that what you mean? The only way I would know to do this, without editing the theme, is to give your sidebar a set height using css. The issue with this is that every page is different in height so the css would vary by page. If you did want to do it this way you could use css like this:

    @media (min-width: 992px) {
    .sidebar {
        height: 500px;
    }
    }

    3. Sorry, for some reason I wasn’t seeing that. This css should remove it:

    #filters li:first-child {
        display: none;
    }

    4. Try changing the css to this:

    .sf-menu * {
        -webkit-transition: .2s ease-in;
        -moz-transition: .2s ease-in;
        -ms-transition: .2s ease-in;
        -o-transition: .2s ease-in;
        transition: .2s ease-in;
    }

    Does that make a difference?

    Hannah

    #61249

    By product edit page I just mean your product page where you add the product content/details (Go to Products from the Admin Panel). You should see a Product Sidebar Options tab and under this ensure Display Sidebar? is set to either Yes or Default. Do you see this?

    Hannah

    #61227

    Sorry for the late.
    Yes work fine.
    I have another 2 questions.
    1 I need to nove the sidebar in the left side
    2 I need to use the custom menu widget and i want to use the same style o woocommerce product categorie widget
    Tnx in advance

    In forum: Virtue Theme
    #61219

    Hey,

    1,2 great – for the background i was curious if there is a possibility to make the same color on the whole column under the sidebar too

    3. under the SORTING dropdown and the products there is a row with:

    All ALLE ASPIRE …etc… i don’t need All

    4. now it’s stottering a bit on fade in and it is still easy to miss the item you want.
    Is it possible to make it quick to appear and longer time to stay on ? I know, the submenu is very wide…

    Thank you,
    B.

    #61214

    Hello,

    In Theme Options > Product Settings have you set Product Sidebar Default to Yes, Show?

    This is set to Yes.

    And i have no product edit page, so it cannot be overridden.

    In forum: Virtue Theme
    #61197

    1. Add this to your custom css box in Theme Options > Advanced Settings:

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

    2. I think this is what you mean:

    .sidebar {
        background-color: #999;
        padding: 10px;
    }

    3. I’m not seeing “All” anywhere?

    4. Try adding this css:

    .sf-menu * {
        -webkit-transition: .2s ease-out;
        -moz-transition: .2s ease-out;
        -ms-transition: .2s ease-out;
        -o-transition: .2s ease-out;
        transition: .2s ease-out;
    }
    

    Hope that helps!
    Hannah

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

    Hi Hannah,

    nothing to be sorry for 🙂

    … but some styling would be nice:

    1. sidebar on the left ?

    2. background of the sidebar, even better for the whole “column” if possible

    and some corrections:

    3.from the category list above the products i need ALL to disappear because i have a category named ALLE that does the same thing
    (made this category because the shortcode on another page does not show ALL in the category list and i need it to show: http://kreiswolke9276.apps-1and1.net/dampfgeraete)

    4. the fullwidth submenu hover is a bit snappy – if possible i would like it to have a slow fade off – now it’s very easy to miss the item you want to click

    thank you,
    B.

    #61135

    Hello

    I have a big problem
    on all my articles published the sidebar is not displayed properly on the right of the page …. it always appears below the article and this affects the design of the site … can you find me a solution the sidebar is correctly right of all items

    I give you link my website to check the state of the sidebar to this article

    thank you very much ……

    #61097

    Hey Kent,
    You have a lot of css in the custom css box. At least somewhere you have css that is breaking because if you move hannahs css to the top of custom css box it would work.

    Just in cause you every decide to add a widget above your visual editor widget I’m going to suggest changing the css to this though.

    .sidebar .widget_black_studio_tinymce {
        background-color: #999;
        padding: 10px;
    }

    add it to the top of your css box.

    Ben

    #61095

    #1 Please post a link. Are you wanting this to only effect one page or on all pages with a sidebar?

    #2 You would have to add a function in a child theme: https://www.kadencewp.com/child-themes/ to have excerpts read shortcodes:

    function kt_shortcode_in_excerpt( $excerpt ) {
            $excerpt = strip_tags( do_shortcode( wp_trim_words( get_the_content(), 40 ) ) );
    
        return $excerpt;    
    }
    
    add_filter( 'get_the_excerpt', 'kt_shortcode_in_excerpt' ); 
    }

    Ben

    #61092

    Hey Kent,
    Try adding this to your custom css box in Theme Options > Advanced Settings:

    .sidebar .widget-first {
        background-color: #999;
        padding: 10px;
    }

    Hope that helps!

    Hannah

    #61084

    Hi,
    #1 could you please tell me how to make my sidebar have 36% width and my blog posts(2 column grid) have 64%? I tried

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

    but this removes margin/padding from some of the post excerpts.
    #2 Is there a way to display icons(added with the shortcode) in blog excerpts? I tried it in the automatic excerpt and custom excerpt but shortcodes don’t seem to work there.
    Thanks!

    #61080

    Hey,

    I would like to change the background color of my ‘Visual Editor’ widget in the sidebar. Could you please explain how to do this?

    Website:
    Username: demo
    Password: demo

    Thanks!!

    #61050

    Hey Sander,
    In Theme Options > Product Settings have you set Product Sidebar Default to Yes, Show? Also, make sure this is not being overridden on the product edit page.

    Hannah

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