Home Forums Support Widget Support EasyBlog Edit Title Color after clicking on Post thumbnail Reply To: Edit Title Color after clicking on Post thumbnail

responsive-muse
Keymaster
Post count: 287
#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 there

To 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>