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

    Ben,

    1.) I am adding widgets to a sidebar. The first item in the sidebar is an image added with the Visual Editor widget.
    The remaining items in the sidebar are icon boxes also added using the Visual Editor widget. See page in question…

    I believe I need to adjust my padding (?) for the image as it does not seem to fill the horizontal space available in the sidebar despite the fact that the image size exceeds the space needed. Any direction?

    2.) I have added a table on another page that does not dynamically resize. See page in question here.

    Can you advise how to make table more responsive?

    Many thanks.
    Mike

    #15463

    Did you change anything from yesterday and today? Adding widgets to the footer has nothing to do with sidebars. You would be adding the widgets to footer columns 1,2,3,4. Is that what you’re doing?

    #15459

    This is my issue now. Yesterday, it displays correctly all widgets in Footer Column 1, 2, 3, 4. Today, when I check I see nothing in these sidebars in Widget Settings,
    I try to add again and again, but nothing happens.
    You can see my page:
    I try to save widgets in Footer Column, but refreshing again, nothing appears.

    #15385

    There isn’t really anyway to do this, A filter page isn’t like a category or other page, It’s loaded with ajax so it’s not actually considered it’s own page.
    If having different sidebar widgets is important you would have to drop the filter and just use categories or tags.

    Ben

    #15380

    I would like to add a different sidebar on the filterpage, for example on this page:
    (Or better I would like to put a text-widget in the static sidebar, but which will only show on the page mentioned.)

    Can somebody help me with this?

    #15327

    To make the post categories full width you have to set that in the theme options >blog settings.

    Scroll to the Blog Category/Archive Defaults and set the “Display the sidebar on blog archives?”

    Ben

    #15317

    In the categories page images appear smaller than the home page, it seems that the side is selected, but in opçõe blog is marked “Blog Post Sidebar Default = no, do not show” how to solve:

    Already searched the posts but did not find the solution.

    (by Google tradutor)

    In forum: Virtue Theme

    In reply to: Center search

    #15270
    .sidebar .form-search {
    margin: 0 auto;
    }

    Just add that css.

    Ben

    #15256

    I am trying to remove the space between the Revolution Slider and the Home Widget / Sidebar Widget areas. I tried the custom CSS above, but it did not work. My website is http://www.inpursuitofpar.com.

    In forum: Virtue Theme

    In reply to: Side bar

    #15039

    Depends on the widgets, If you want the whole sidebar you can add this css:

    .sidebar {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
    }

    Ben

    In forum: Virtue Theme

    In reply to: Some CSS

    #14960

    ok you can add this css for your sidebar links:

    .sidebar .textwidget a {
    color: #7ba39f;
    }

    Ben

    In forum: Virtue Theme
    #14932

    Emmanuel use the sidebar page tempalte if you want to have a sidebar. If not then use the full width of contact page template.

    Yes you can set up your contact page with a map and contact form (the demo doesn’t have a sidebar)

    Just use the contact page template: http://docs.kadencethemes.com/virtue/#contactpage

    Ben

    #14882

    Hey,
    Yes,

     .sidebar h3 {
    font-size: 16px;
    color: #000;
    }

    Ben

    #14880

    Is there a way to globally change these?

    Last question for the weekend!

    Thanks,
    Greg

    #14876

    That did work. However, the second sidebar seems to disappear and then at times re-appear and again disappear as an option in the widgets section. I was planing the recent blog posts in this sidebar widget.

    Anyone experience this in the past?

    #14749

    Hello again,

    I added a plugin to use icons in the menu and now my social media icons on the top bar and in my sidebars are not there anymore! Anyone had any issues with this?

    Thank you!

    #14658

    Hi Ben, Was this option made available? If so, where is it located? I see that the Blog Category/Archive Defaults has an option for no sidebar, but it doesn’t seem to work as there is still a sidebar to the right.

    In forum: Virtue Theme
    #14514

    Ben,
    I added your code to my previously empty functions.php file in my virtue-child theme and it seems to break the site. Pages appear to load but also appear completely blank.

    Here was the content of my functions.php file which I had to remove to allow continued editing of the site ….

    <?php 
    //Add your custom functions here.
    
    <?php add_filter('kadence_display_sidebar', 'kad_custom_fullwidth_page');
    function kad_custom_fullwidth_page($sidebar) {
      if (is_page_template('page-custom-fullwidth.php')) {
        return false;
      }
      return $sidebar;
    } ?>

    thanks
    Mike

    In forum: Virtue Theme

    In reply to: Recent post.

    #14488

    Just use the fullwidth template, or if you want a sidebar then edit the content in the widgets page.

    Ben

    In forum: Virtue Theme
    #14484

    Yea so side is determined by a function because of how the theme wrapper works, So it’s actually the file name that determines that the sidebar shouldn’t show. It’s tricky but genius. Here is the function you can add to your child theme functions file that will all you to create a full width page.

    <?php add_filter('kadence_display_sidebar', 'kad_custom_fullwidth_page');
    function kad_custom_fullwidth_page($sidebar) {
      if (is_page_template('page-custom-fullwidth.php')) {
        return false;
      }
      return $sidebar;
    } ?>

    Ben

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