Get rid of wordpress page title

I want to get rid of the page titles on my site troide.co , as you can see on the programmes page and the corporate page the logo overlaps it and it is annoying. The titles are ugly anyway, how do i remove them?
Thanks!

1 Like

You could set a margin-left to avoid the logo.

e.g.

#intro.option1 #intro-core {
display:block;
width:auto;
margin-left:200px;
}

You’d have to cater for the smaller screen media queries accordingly.

1 Like

what @PaulOB said of course. That’ll work. but you don’t make it clear how you added the title. Another way to possilby be rid of it, is to go to the wp-admin area. From “Settings” in the left hand column with the admin menu. Choose “General”.
There you’ll also find the area where normally the title & subtitle for the site are stored.

Of course if you mean all the page titled you can also edit the content.php file. Normally found in the template-parts folder (might differ in your theme)

well it seems that your site is on a wp-theme. My face is all red if I am wrong of course.

If you’re planning on changing the theme, unless it’s a custom theme you should create a child theme rather than modify the original, otherwise if you upgrade the theme at some point you will lose all the changes you made.

1 Like

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.