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…
*Login to see link
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.
*Login to see link
Can you advise how to make table more responsive?
Many thanks.
Mike
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?
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: *Login to see link
I try to save widgets in Footer Column, but refreshing again, nothing appears.
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
I would like to add a different sidebar on the filterpage, for example on this page: *Login to see link
(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?
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
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)
.sidebar .form-search {
margin: 0 auto;
}
Just add that css.
Ben
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.
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
ok you can add this css for your sidebar links:
.sidebar .textwidget a {
color: #7ba39f;
}
Ben
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
Hey,
Yes,
.sidebar h3 {
font-size: 16px;
color: #000;
}
Ben
Is there a way to globally change these?
Last question for the weekend!
Thanks,
Greg
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?
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!
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.
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
Just use the fullwidth template, or if you want a sidebar then edit the content in the widgets page.
Ben
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