This topic has 10 replies, 4 voices, and was last updated 8 years, 5 months ago ago by Robert Hall
Hi Team,
Currently when I open my site on mobile, product show in two columns, I want to change settings so that my products show as one column in mobile view like you following demo.
https://www.8theme.com/demo/classico/variant1/product-category/dresses/page/2/?full_width=1
Please help
Hello,
Please provide WP Dashboard credentials in private content.
Best regards,
Jack Richardson.
Please also advise how do I change sidebar heading bg colour which is black at the moment?
Details are in private contents
Hello,
I’ve added the code in Theme Options > Custom CSS > Custom CSS for mobile:
.products-grid .product {
width: 100%;
}
Please check the site now.
Regards,
Eva Kemp.
Thanks Eva, it looks perfect.
Please also advise how do I change sidebar heading bg colour which is black at the moment?
Hello,
Please use this code in Global Custom CSS
.sidebar .widget_product_categories .widget-title {
background-color: #f11212;
}
Regards,
Robert Hall
Thank you Rob,
it worked great.
Can you please advise me how do I change font setting (color, weight etc) for different heading levels (h1, h2, h3 etc) in your theme?
Thank you
Hello,
In this case you can use CSS code in 8Theme Options->Styling->Custom CSS->Global Custom CSS.
h1{
color:red;
font-weight:bold;
}
h2{
color:red;
font-weight:bold;
}
h3{
color:red;
font-weight:bold;
}
h4{
color:red;
font-weight:bold;
}
h5{
color:red;
font-weight:bold;
}
h6{
color:red;
font-weight:bold;
}
Regards,
Robert Hall
Please check private contents
Try to add !important
, for example
h2{
color:red;
font-weight:bold !important;
}
but this code will change value for all h2
tag on the site.
If you want to change it only for post title add this code in Global Custom CSS.
article.blog-post h2{
color:red;
font-weight:bold;
}
Regards,
Robert Hall
You must be logged in to reply to this topic.Log in/Sign up