Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #154420
    knudkp
    Participant

    Running latest WP and theme ver. at fleksjobbernetvaerket.dk

    Among other elements, I show a page (not post) on the frontpage of my site. i think the page id is 48.
    I only have a titel, and no other content on that page. But i dont wanna show the titel, so i have tried with the follow CSS

    .page-id-23 .entry-title {
    display: none;
    }

    ….. but that won’t work

    #154437
    sapana
    Participant

    @knudkp:Go to=> Dashboard=> Appearance=> Customize=> Additional CSS and add the following CSS code

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

    You can add any page-id as per your requirement where you want to hide the title.
    let me know if this works out!
    Kind Regards,
    Sapana

    #154467
    knudkp
    Participant

    Oh, that worked … perfectly – see https://snag.gy/clNX4m.jpg

    How do I minimize that huge white space of nothing, between ‘the upper content’ and the ‘lover footer content’ – this inbetween white space is pretty huge …

    Thanks again for grat service!

    Purchasing your themes ALWAYS gives me value for money!

    thanks
    Knud
    Denmark

    #154580
    knudkp
    Participant

    I meant,

    How do I minimize that huge white space between the upper and lover content – see https://snag.gy/clNX4m.jpg

    thanks
    Knud

    #154697
    sapana
    Participant

    @knudkp: Go to=> Dashboard=> Appearance=> Customize=> Additional CSS and add the following CSS code.

    #post-4 {
     margin-bottom: 0px;
     padding-bottom:0px;
    }
    #content .wrapper{
    padding-bottom:0px !important;
    padding-top:0px !important;
    }

    Let me know if this works out!
    Kind Regards,
    Sapana

    #154698
    knudkp
    Participant

    I’m not quite sure, but it looks like it helped —

    When pasting the code I changed the number 0 to 30 in the line “padding-top:0px !important;” as I guess that would be needed to reduce the amount of space.

    I also see two horisontal lines … they take space as well … Can I remove them too?

    thanks
    knud

    #154771
    sapana
    Participant

    @knudkp:Go to => Appearance=>Customize=> Additional CSS and add the following CSS code

    .home #content {
    display: none;
    }

    Let me know if this works out!
    Kind Regards,
    Sapana

    #154781
    knudkp
    Participant

    Sapana, you are awesome! Now this CSS worked perfectly …

    Well, theres still a horisontal line between upper and lover content, but I guess I can live with that …

    thanks
    Knud

    #154785
    sapana
    Participant

    @knudkp:To remove the horizontal line lower the content
    Go to=> Appearance=>Customize=>Additional CSS and add the following CSS code

    #featured-content{
    border-bottom:0px;
    }
    #supplementary{
    border-top:0px;
    }

    Let me know if this helps you out!
    Kind Regards,
    Sapana

    #154786
    sapana
    Participant

    @knudkp:Hello, there,
    I hope I was able to resolve your issue. If it’s not too much trouble,I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/catch-base/reviews/#new-post. Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated.Thanks, and if there’s anything else at all that I can do to help,don’t hesitate to let me know.
    Kind Regards,
    Sapana

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Need help to hide a PAGE titel’ is closed to new replies.