Hi,
I want to change the appearance of the blog post title in a module I have put on my homepage. Whatever css I try I have no result.. What do I miss?
.slide-entry-wrap .slide-entry-title .entry-title h3 {font-size:19px !important;
text-transform: uppercase !important;
color: #e56d78 !important;}
Thanks
Hey chryseis!
Please make sure to disable CSS minifying feature if you are using on a plugin. If that does not help, can you please post the link to your website and point out the element so we can provide you an accurate custom CSS code?
Cheers!
Yigit
Hi!
You can use this to modify the title:
.home h3.slide-entry-title.entry-title {
font-size: 19px !important;
text-transform: uppercase !important;
color: #e56d78 !important;
}
Cheers!
Ismael
Hi Ismael,
This is perfect! Thanks!!