How to disable 'entry-title' of First Content Block
-
First Content Block shows the title of the page at the moment – how do I disable it? If I use display:none all the padding is gone. don’t want to use the opactity: 0 thought…
The blog I need help with is: (visible only to logged in users)
-
Also how to increase the size of Featured Image on front page? my image is high, but only a part of it is visible
-
Hi,
you can use this:
.block-two h2.entry-title { display: none; } .block-two { margin-top: 100px; } .homepage .header { height: 100vh; }
Hope this helps.
All the best,
Ana -
Thanks
This code:
.homepage .header { height: 100vh; }
Keeps the text on top of the image on top, I’d like to keep it in the middle of the image.
I changed it to this:
.homepage .header { padding: 15% 0; }
But not sure if that may cause any issues?
-
I just realised that this:
.block-two h2.entry-title { display: none; } .block-two { margin-top: 100px; }
also disables the H2 heading in the Sign Up To Newsletter section (the one with yellow button)
how do it keep the heading there?
-
Hi,
if you want to disable it just on the home page you can add class home: for example
.home .block-two h2.entry-titleHope this helps.
All the best,
Ana
- The topic ‘How to disable 'entry-title' of First Content Block’ is closed to new replies.