This reply has been marked as private.
I think you mean something like this:
@media (max-width: 1200px){
#ktsidebar {display: none !important;}
.main.col-lg-9 {width:100%}
}
Ben
Cheung, Please post in your own topic and give specific about what you want.
Eunice,
First off you have this error: Font from origin ‘http://yourdigitalstop.com’ has been blocked from loading by Cross-Origin Resource Sharing policy: No ‘Access-Control-Allow-Origin’ header is present on the requested resource. Origin ‘http://www.yourdigitalstop.com’ is therefore not allowed access.
Your site is not redirecting to either have www or not have www and you need to make it so you only have one and then set that url in your admin general settings.
As for css try this out:
.woocommerce .product-categories li span {
position: absolute;
top: 3px;
left: 0;
}
.woocommerce .product-categories li a {
padding-left: 30px;
}
.woocommerce .product-categories li {
position: relative;
}
.woocommerce .product-categories li:hover, .woocommerce .product-categories li:hover a, .woocommerce .product-categories li.current-cat, .woocommerce .product-categories li.current-cat a {
color:#dd8500;
}
.sidebar ul.product-categories {
margin-left: 0;
}
Ben
You don’t need css to disable the sidebar. Most page templates have an option to turn the sidebar off. Or you can use a fullwidth template.
Hannah
Hi there,
I was wondering if you have a list of all the content values for each virtue_icon as I am trying to customise my sidebar bulletpoints with the following css;
.widget_recent_entries .widget-inner li a:before {
font-family: virtue_icons;
font-style: normal;
speak: none;
font-weight: 400;
content: “e37d”;
float: left;
margin-left: -20px;
webkit-font-smoothing: antialiased;
}
the content example here is not the icon I want (e37d) so it would be good if there was a list of all the virtue icons with their content values so I can edit bullet points with the icons.
Many thanks,
Darren
Hi again,
one more question 🙂
I disabled the sidebar:
@media (max-width: 1024px){
#ktsidebar {display: none !important;}
}
Is there a way to disable the sidebar on mobile devices and use full-lenght mode in the landscape mode on tablet (iPad etc.)
Thanks in advance!
David
WOW, I also want to add hover effect on sidebar.
Can also help me to add that by css ?
My website : dakxcc.com.
This reply has been marked as private.
Hi Ben/Hanna,
How do add an active hover font on my product category on sidebar?
Thanks.
The woocommerce widgets are not for the main content of the page. They are for a sidebar. If you want on the main content of the page you need to use the woocommerce shortcodes: http://docs.woothemes.com/document/woocommerce-shortcodes/
Ben
3. On your home page. Make sure you have not enabled a sidebar.
4. You can change the menu word in your theme options > language settings.
Ben
Hi, I get the css to make sidebar to left as below
@media (min-width: 992px) {
body .main.col-lg-9 {float:right;}
}
However, is it possible to make the photo to left and the price to right ?
And also i want double the size of photo.
my site: dakxcc.com
I am having issues with the Revolution slider. I can see the slider as active on my plugin page … however when I go to the Home Slider page and select the Revolution slider in theme options it say’s “no items of this type were found”
I looked at your tut on sliders and followed the 4 steps
Step one: Make sure you have the latest copy of Virtue Premium by downloading the file from the my-account page on Kadence Themes.
Step Two: Unzip the theme file and note the location on your hard drive.
Step Three: In your wordpress admin click on the revolution slider sidebar tab and in the bottom right corner click the update plugin button.
Step Four: Navigate to the location where you unzipped the theme file then open the theme folder, open lib, open plugins and then select the revslider.zip
The plugin will then be updated.
However I get this message
importing slider setings and data…
Error: slider_export.txt does not exist!
Go Back
Also in Step 3 … I can’t see anything in the bottom right corner that indicates that there is anything to select to update the plugin
I am not someone who works with code … I am a Herbalist, so please respond with the easy version of what to do 🙂
Thanks
1. In your post edit page set the post summary to video.
2. You can choose your homepage sidebar in Theme Options > Home Layout and you can customize in Appearance > Widgets.
Hope that helps!
Hannah
Also I cannot find anything on how to customize my homepage sidebar
Hello,
I am using text widgets to get adsense ads to appear in the sidebar and on pages, but I’m also looking to insert ads to appear on single post pages, above the featured image. Am I right in thinking that this needs to be inserted into ‘content-single.php’, and if so, where should I enter the code?
Thanks.
Hey David,
You just need to set the page template to fullwidth. Or in the edit page you should see an option to turn off the sidebar.
Hope that helps!
Hannah
Hi,
is there a way to disable the sidebar on separated pages?
Thank you in advance.
David
You would need to use a custom function. The events calendar uses it’s own templates so you just need to turn the sidebar off for theme.
In a child theme you would add a function like this:
add_filter('kadence_display_sidebar', 'tribe_sidebar');
function tribe_sidebar($sidebar) {
if (tribe_is_event_query()) {
return false;
}
return $sidebar;
}
Ben
Ben,
I have The Events Calendar Pro 3.9.3 installed and it does not matter what I set the template to for the page or in the backend settings for the calendar, it always displays the primary sidebar. I don’t want a sidebar on this page. How can I get rid of the the side bar?
Thanks
Jeremy