Hello, i'm don't know phps ( i am ex-car mechanic)...but i know it is in content-extension.php.. how to to do it..which code should i remove or delete or adjust.. it is in <h1> soo big.. but i wanna remove so it's look clean
ThemeShaper Forums » Thematic
How to remove entry title
(4 posts)-
Posted 3 years ago #
-
@lutfurrahim... re "How to remove entry title... don't know php... <h1> so big"...
You don't need to know php for this, you can do it in your child theme's style.css file.
In the "content section" of your child theme look for something like....entry-title {
font-size:17px;
line-height:20px;
padding:8px 0 2px 0;
font-weight:normal;
color:#000;
}You can change "font-size" to a smaller value like 12px (or whatever looks best to you) and if you want to hide the entry title with css, you can use "display:none". Here are 2 examples...
For a smaller font size...
.entry-title {
font-size:12px;
line-height:16px;
padding:8px 0 2px 0;
font-weight:normal;
color:#000;
}or to hide the entry title...
.entry-title {
display:none;
}Posted 3 years ago # -
I only want remove the HOME at front page..when i edit it all entry title gone to..that's why..i think it is related with php..anyway thank you Marti..
Posted 3 years ago # -
@lutfurrahim only want remove the HOME at front page(...)
I don´t know php too and had the same problem and fixed it by adding this to the style.css of the child theme:
body.slug-home .entry-title {
display: none;
}
I created the home as a page using wordpress settings. And I also got rid of the sidebar just on the home and adjusted it´s width using this very helpful guide, which also taught me how to remove the home entry-title:
Posted 3 years ago #
Reply
You must log in to post.