Hi,
how can i disable or reduce the size of the Page titles?
Hi,
how can i disable or reduce the size of the Page titles?
it would be nice to know how can i disable ONLY home page title too :)
this code doesnt work:
.page-id-68{
display: none;
}
Since no one seems to be responding around here. I will take a stab at it. Give this a try in your custom styles. Just change the font size
This is site wide I believe. Don't know how to change if just for the home page. Good luck.
.title_container h1 {
margin: 0;
font-size: 28px;
position: relative;
z-index: 2;
yeah cool...thx ! that works,
now i only need the code to disable it completely!? :)
}
.page-id-6{
display: none;
}
that code doesnt work...i need the code to disable all page titles or selected pages by page ID. !?
Have you tried
.title_container{
display: none;
}
Why don't you want page titles? Isn't that something you need for good SEO?
yeah...thx thats it :)
its ony a little page and the customer dont wanna have them :)
Hi,
Can you post a link to your site? So we can check it better.
Anyway, I hope this code snippet would help:
.title_container h1 {
display: none;
}
Regards,
Ismael
You must log in to post.