Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #107415
    mcubedpe
    Participant

    Hello everyone,

    Trying to get the free version of Full Frame up and running for a customer, and I’m baffled… everything is working fine, with the exception that I have a “.entry-title { display: none; ” coming from line 72 of the index file?!?!

    It’s not coming from the style sheet. it’s being embeded into the main html.

    I assume there is some menu somewhere that is set wrong, but I can’t find it. If I use Chrome’s inspect feature, I can manually see what happens if I turn off the “.entry-title { display: none; ” coming from line 72 of the index file, and then it displays on the screen correctly.

    But I can’t figure out how to turn it on in WordPress Custom Theme, or anywhere else in the style.css (which doesn’t appear to have any effect).

    Help!

    #107428
    Mahesh
    Keymaster

    @mcubedpe: Please post in your site url. May be you have some Custom CSS. Have to check your site for this.

    Regards,
    Mahesh

    #107454
    mcubedpe
    Participant

    Hello @Mahesh – thanks for the help.

    Here’s the link -http://www.controlledchaosarms.com/firearms/blog

    -Michael

    #107480
    Mahesh
    Keymaster

    @mcubedpe: Checked your site, its not from the theme but from some Custom CSS. Go to Dashboard=> Appearance=> Customize=> Additional CSS box and remove the following code:

    .entry-title {
           display:none;
    }

    Regards,
    Mahesh

    #107528
    mcubedpe
    Participant

    Thank you! @Mahesh

    Didn’t realize there was a desire to turn off titles on other pages, so I changed to this:

    .entry-title {
           display:none;
    }
    .archive-post-wrap .entry-title {
           display:inline;
    }

    -Michael

    #107529
    mcubedpe
    Participant

    In case anyone is trying to turn off post titles on all pages – EXCEPT posts.

    I ended up with this custom CSS.

    .entry-title {
           display:none;
    }
    .archive-post-wrap .entry-title,
    .post .entry-title {
           display:inline;
    }

    -Michael

    #107567
    Mahesh
    Keymaster

    @mcubedpe: Glad to know you’ve resolved it.

    Regards,
    Mahesh

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘No title on posts page, where is this extra display:none coming from?’ is closed to new replies.