Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #62060
    Phil
    Participant

    I’ve used a few bits of custom css to modify little things:

    .hentry {
    -webkit-hyphens: manual;
    -moz-hyphens: manual;
    hyphens: manual;
    }
    .home .entry-header { display: none; }
    #feature-slider {
    display: block;
    position: relative;
    padding-bottom: 10px;
    overflow: hidden;
    z-index: 101;
    }
    .home .site-content { display: none; }

    The problem is, the instruction to hide the “Home” page title also hides the titles for my featured content.

    If I remove this instruction:
    }
    .home .entry-header { display: none; }

    I get my featured content titles back, but I get an ugly white block at the bottom of the page with “Home” in it. The instruction not to display home page content is ignored. How can I fix this?

    To clarify: I want to hide the Home title, but keep the featured content titles.

    I’d also like to add space – say 20 px – between the promo headline and the featured content. Is that possible?

    Thanks

    #62108
    Sakin
    Keymaster

    @Phil: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    .home #content .entry-header { display: none; }

    Can you send me your site URL so that I check in to add spaces. You can either add padding-bottom or margin-bottom for Promotion headline and it depends on the background change. So, either use:
    #promotion-message { padding-bottom: 20px; }
    or
    #promotion-message { margin-bottom: 20px; }

    #62127
    Phil
    Participant

    Thanks Sakin – perfect.

    The site is at la-fermette.com if you want to have a look, but both issues are sorted. For the promo it was the second line of code: #promotion-message { margin-bottom: 20px; }

    #62129
    Sakin
    Keymaster

    @Phil: That’s nice 🙂

    #62142
    Phil
    Participant

    One more thing if I can – to do with the latest blog posts widget (here for example: http://la-fermette.com/photo-gallery)

    Can I put a bit more space between each post title – say 5 px – just to separate them a bit. At the moment it’s difficult to differentiate one from the other.

    Thanks

    #62193
    Sakin
    Keymaster

    @Phil: You can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    .widget_recent_entries ul li { margin-bottom: 5px; }

    #62195
    Phil
    Participant

    Sorry – that’s not working. I tried changing the 5 to 35 to test it and nothing happens.

    I want to increase the space between each item in the list, yes? For example:

    Driving in France

    Foire Aux Plantes, Genouilly

    A Day Out To Chéry and Méreau

    Etc…

    Thanks

    #62197
    Sakin
    Keymaster

    @Phil: Sorry I have corrected the css above. Please check in

    #62208
    Phil
    Participant

    Perfect. Thanks.

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Featured Content Titles’ is closed to new replies.