• I’m quite new at WordPress and wish to remove the titles above the content on all my pages on my site which has the Edin theme running on WordPress 4.0

    I’ve already read through several posts on this subject but can’t seem to make any of the suggestions work.

    Is there a specific place within the stylesheet where a new line must be added? If I add something, must I also remove something else?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi.

    I think you have to put:

    .page-title {
    display:none;
    }

    If this does not work try

    .page-title {
    display:none !important;
    }

    You have to put the code in your custom css texarea if you have one or if you’ve created a childtheme you can put it in the style.css

    I tried the display:none; method and it messed up the featured image when I exercised the responsiveness of the page, so I tried something different, and it worked ??

    In the Editor, scroll down to Stylesheet. In the stylesheet scroll down to the 11 section that works with content. Under /* Hero */ , find the block that reads

    }
    .hero.with-featured-image .page-title,
    .hero.with-featured-image .hentry {
    position: relative;
    color: #fff;
    }

    Then change the hexcode to read transparent like this…

    }
    .hero.with-featured-image .page-title,
    .hero.with-featured-image .hentry {
    position: relative;
    color: transparent;
    }

    Update your file and, voila! you are done ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Theme: Edin] Removing titles from pages’ is closed to new replies.