Home › Forums › Support › Widget Support › EasyBlog › Edit Title Color after clicking on Post thumbnail › Reply To: Edit Title Color after clicking on Post thumbnail
#43393 |
Sorry, this little CSS snippet may help.
To add custom CSS in Muse, you must go to Page -> Page Properties -> Metadata -> HTML for
and paste the code thereTo hide the title:
<style> .singleposttitle {display:none!important} </style>
To change the color and font family:
<style>
.singleposttitle {
font-family: Arial, Helvetica, sans-serif!important;
color:#cecece!important
}
</style>