Hi,
Bit hard to describe, but on my pages (not posts) I seem to have no option but to have a title that’s left aligned which looks a bit silly, especially on the homepage.
Do you know How I can disable this please?
I’ve attached a screenshot below.
You can see the title is ‘home’.
Hi there
Hope you are having a good day and thank you for your question
please provide url and i will take a look
https://joejohnsonfitness.co.uk/
that’s my homepage - you can see the ‘home’ title at the top!
Thank you!
Hey there
if you want to hide title on all pages add this css in appearance > customize > additional css:
.entry-title {
display: none;
}
but if you want to hide it only on homepage add this one:
.home .entry-title {
display: none;
}
Hey there
if you want to hide title on all pages add this css in appearance > customize > additional css:
.entry-title {
display: none;
}
but if you want to hide it only on homepage add this one:
.home .entry-title {
display: none;
}