Hi again,
Okay, so if your theme does not have a custom CSS option, add a custom CSS plugin and add this CSS there:
h1.entry-title {
display: none;
}
issue resolved 🙂
‘.entry-title {
display: none;
}’
i wrote this code on my css style sheet 🙂
i wrote this code on my css style sheet 🙂
if you mean the theme style.css file – that’s not a good way to make changes as those changes will all be lost when you update the theme. You should use a child theme or custom CSS for modifying theme files.
http://codex.wordpress.org/Child_Themes
That css code will disable the title on all pages. To disable it only in the front page the css should be
.home h1.entry-title { display: none;}
@wpyogi
i downloaded a plugin CUSTOM CSS . made these changes over there.
i have one issue.When i changed/wrote this code on child theme ,no changes were on my site.But when i wrote this code on my plugin CUSTOM CSS .then the title of all the pages went away.
whar would be the problem?
@vivathemes i wanted to remove the title of all the pages,THANKS :):)
Also i want to put moving caption like this
.how can i do this?