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,861 through 4,880 (of 5,356 total)
  • Author
    Search Results
  • In forum: Virtue Theme
    #23412

    Hey,

    I still get a sidebar where I put in the options that I do not want one… How can I fix this?

    No sidebar on homepage but I do have one on the following pages:


    Thanks!

    In forum: Pinnacle Theme

    In reply to: Background

    #23393

    Yeah, I want the whole content block to be the same color, that way only colors the areas surrounding the sidebar and content. It leaves transparent areas that reveal the background. Where is the boxed layout option?

    #23282

    Hi Ben
    I can’t for the life of me work out why the numbers of products for each attribute are not being displayed in my YITH sidebar widgets. The small class is showing up but nothing to be seen.
    Wondering if it’s a theme conflict?

    allabouttea.co.uk/buy-tea-online/

    My css is

    .widget_layered_nav h3 {
    font-size:12px;
    line-height: 12px;
    text-transform: uppercase;
    }

    .widget_layered_nav ul li a {
    padding: 2px 2px 2px 2px;
    font-size:12px;
    line-height: 12px;
    }

    .widget_layered_nav ul li a:hover {
    background-color: #CED8F6 !important;

    .widget_layered_nav ul li small.count {
    padding: 2px 2px 2px 2px;
    font-size:12px;
    line-height: 12px;
    }

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

    .kad-sidebar {
    /*border: none;*/
    border-left: 1px solid #aaa;
    padding: 25px;
    /*background-color:#CED8F6;*/
    }

    Andrew

    In forum: Pinnacle Theme

    In reply to: Background

    #23263

    I cant link to it, I am building it on my computer. Anyway, I want the content and sidebar to be universally white. I see no way to efficiently do that without going through each type of page (404, post list, page, post, etc.) and changing each of them to white

    #23211
    .sidebar .widget {
    margin-bottom: 0px;
    margin-top: 0;
    }
    .sidebar .widget h3 {
    margin: 0;
    }

    You can add that to the theme options > advanced settings. Custom css box.

    Ben

    #23204

    Hey,
    If you have a sidebar on the home page and you want two columns the image will automatically go to the top because of how much space is available.
    If you set the home page as your latest posts page you can use theme options to set the “page content” to show your posts in three columns.

    Yes you can add cat=”news” to the blog posts shortcode.

    Ben

    #23178

    Hello, thanks for the theme.

    To allow more content in a short space, I want to reduce the space between widgets in the sidebar. I also want to reduce the space between widget’s title and content, which is usually huge. Please tell me how to do it.

    Thanks a lot, My site is

    #23166

    Okay, when I have no sidebar turned on the home page then I get 2 columns, with text on the right of image. I would like it to be in landscape mode showing 2 columns and a sidebar. or If I can get it to display 3 columns with side bar, the Portrait format would be okay then, is there a way to tell it to go to 3 columns for blog posts on the home page config? I seem to be only getting no more then 2. I can get 3 columns on a generic blog summary listing page okay, but not on the home page.

    What are all the short code options for blog_posts? is there one to specify which category?

    [blog_posts items=”6″ orderby=”date” category=”news”]

    #22838
    .sidebar .product-categories > li > a {
    font-weight: 700;
    }

    Ben

    #22759

    Hey, try adding this css:

    .sidebar .product-categories li a, .woocommerce .product-categories li a {
    font-weight: 700;
    }

    Just paste it in your custom css box in theme options > advanced settings.

    Hannah

    #22755

    Hi Guys!
    i need to know if it’s possible make some changes in the widget from sidebar.

    I need that highlighted words be more notorious, like bold or something else.

    Regards
    Kevin Vizcarra Paredes

    #22337

    It seems the default location for sidebars is the right side. Where in the theme do I specify left sidebar instead of right? I can find all kinds of great ways to customize content in sidebars , menus, etc but no obvious way to switch right to left. Thanks!

    In forum: Virtue Theme
    #22196

    Hey, you need to set your page template to fullwidth. And in theme options > home layout make sure you haven’t selected the sidebar layout.
    Hope that helps!
    Hannah

    #22151

    Hi Ben!

    1. I chose a fullwidht page (even set it to sidebar and changed it back) but that doesn’t seem to work…

    2. FIXED! Thanks!

    3. This command doesn’t seem to work (i put it in the general CSS). Also when I set the height to a lot to see if it works nothing seems to change

    4. I also have the pic of the day on my Homepage, but on mobile it seems to get squeezed together (small and ugly). Is there also a possibility to change the look of this on mobile?

    Thanks!
    Pim

    In forum: Virtue Theme

    In reply to: Template modification

    #22147

    Hey, You can use a widget or shortcode or text box to add a form to a sidebar. You don’t need to edit any files.

    Ben

    In forum: Virtue Theme

    In reply to: Template modification

    #22137

    Ok. Then I’ll try something else.
    I have the form in a custom field. How about putting the form in the sidebar using that custom field ? The sidebar is a Custom Sidebar. If it’s possible, which file do I have to modify ?

    Regards
    Rune

    #22102

    My live URL here:

    I hava a contact form at the bottom of the page. I want to split the contact form from the main text area, so that we can see a bit of the background image in between.

    I believe I neeed to do some modifications to the content-single.php template page, but I’m not able to do it without destroying the sidebar.

    Regards
    Rune

    In forum: Virtue Theme
    #21943

    Thanks to both of you – you are right – leaving the “search results” sidebar setting blank removed the sidebar but not the space. However Ben’s CSS hack works great!
    Now is there any way to limit the results to either 9 or 12 so I don’t always have one hanging at the bottom of the page?
    http://dantaylor.com/page/2/?s=jensen

    Thanks
    Susan

    In forum: Virtue Theme
    #21926

    Actually removing the space for a sidebar will require a custom function. you would need to place in a child themes functions file:

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

    or you can do a css hack like this:

    body.search-results .main {
        width: 100%;
        float: none;
    }
    
    body.search-results .kad-sidebar {
        display:none;
    }

    Ben

    In forum: Virtue Theme
    #21908

    Hey, in theme options > misc settings leave the “Search Results – choose Sidebar” blank.

    Hannah

Viewing 20 results - 4,861 through 4,880 (of 5,356 total)