• Resolved FlaPnthrsPunk

    (@flapnthrspunk)


    Hello,

    I am fairly new to WordPress and I am having a bit of a problem removing the titles that is above the image in the body section of each page. I have spent the last hour or two searching around the support forums to try to solve the issue, but am not having any luck.

    This is the page if it helps. I want to get rid of the “Flights” title above the image.
    https://www.executivetravellink.com/flight-deals/

    If anyone knows how to possibly fix this, anything would be much appreciated.

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • It is kind of tough not knowing what theme you built your site off of, but there are two options I can think of. If you go to the actual template file responsible for displaying that page you can look for the following code

    <?php the_title(); ?>

    If will probably be wrapped in <h1></h1> tags, just remove it from the file and save it.

    – OR –

    You could use some CSS to hide it completely from view but it would still exist within the page markup. In your master.css add

    article .post h1 { display: none}

    Thread Starter FlaPnthrsPunk

    (@flapnthrspunk)

    It worked. Thanks so much!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Removing the Title from Pages’ is closed to new replies.