hii... i am using simple sense theme of readythemese.. but when i choose post section its title comes in very simple format ..i can edit headings and other content easily because it has options but for Title there is no option how to edit its font and color???
In style.css, Find .leftcontent h1 {margin:0; ........ (rest of the line) add --> color:blue; so the line will be .leftcontent h1 {margin:0; color:blue; .........rest of the line Save it. Reload/Refresh website. you can add any color, for example color:red; or hexa like color: #A73A3A; or RGB color: rgb(61, 119, 170);
Thanks a lot the way you explained i did and it worked its great thanks a lot .. and if i wana change font family and style ..will it be the same way ??? or 1st i have to delete anything in this or or just add the other code for fnt ?
Can't tell you step by step without looking into theme, plus that would require a little knowledge at your side too. I thinks its a paid theme, so you can contact them.
here it is a code where i put the color code as you told me ... .leftcontent h1 {margin:0; color:#e10707; font-size:24px; border-bottom:5px solid #e5e5e5; padding-bottom:2px; -ms-word-wrap: break-word; word-wrap: break-word;} just wana knw about how to gve that heading style i mean how to change it font and bold it
I think the Title is already bold. But you can try this : Add this for bold --> font-weight:bold; leftcontent h1 {margin:0; color:#e10707; font-size:24px; font-weight:bold;(rest of the line) For font, it imports font style from google, that must be in another css file.