Hi, @sagibinder
Try adding this in Dashboard – Appereance – Customize – Additional CSS in the Customizer
1. The first rule is to do what you asked. The 2nd rule is to correct a new additional white space.
@media all and (max-width: 500px){
.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
width: 50%;
float:right;
text-align:right;
}
.site-content {
margin-top: -100px !important;
}
}
2. Footer widget lines:
footer .widget .widget-title:before,
footer .widget .widget-title:after {
width:0px;
}
3. I’m not sure I understood exactly what you want here. This is just a solution to make those products (and their titles) smaller, but if you want a different location, that can’t be done via CSS, but by more advanced coding.
.woocommerce-cart .cart-collaterals .cross-sells ul.products li{
width:45%;
}
.woocommerce-cart .cart-collaterals .woocommerce-loop-product__title{
font-size:20px!important;
}
You can learn how to use the Chrome Developer Tools or Firefox Developer Tools to help you see and test changes to your CSS.
PS: At this point, with your previous topics you might consider having a child theme with all these modifications. 😀
Hope this helps,
Kind regards!
Hi Vlad
Thanks again for your quick and professional answer!
Why do I need a child theme? Is it necessary if I have automatic backups
Happy to help!
I started to know by heart that site 😅
Why do I need a child theme? Is it necessary if I have automatic backups
You don’t need one. It was more of a thought. If you know how to create one, you might consider creating one, but it’s not mandatory. Additional CSS code is stored in the database, so if you have regular backups then no need to worry. If you want to make more serious modifications to your theme – such as putting things in other locations, then a child theme might be handy.
If your question has been answered, we would love if you would mark this topic as resolved in the sidebar. This helps our volunteers find the topics that still need attention and more people will get helped, possibly like you did.
Thank you!