I have created a static page and set it as front page display.
The problem is that the title of the page, a Big HOME, appears before the text.
How can I remove it?
I have created a static page and set it as front page display.
The problem is that the title of the page, a Big HOME, appears before the text.
How can I remove it?
Hard to say without seeing your site or knowing your theme.
But to guess you need to go to Appearance -> Editor
Select page.php from the right side.
Find where it displays the title. Just search the page for title.
Now that whole line you need to wrap inside this code.
<?php if(!is_front_page() ) { ?>
ADD YOUR TITLE CODE HERE
<?php } ?>
That means if NOT your homepage then display the title.
You must log in to post.