• Resolved KariLebeau

    (@karilebeau)


    Wondering if there is somewhere to turn off the second row, in Simplify-Extend theme;
    when I leave the simplify second row featured box options blank it still leaves a large white space.

Viewing 7 replies - 1 through 7 (of 7 total)
  • I’d like to know the answer here. When I remove pics and texts thjere are still small white lines.

    Hi guys,

    I’m new to the support area here so thought I’d have a go at helping you out. Can I confirm that the theme you’re referring to is:

    https://d5creation.com/tag/simplify-extend-theme/

    To get rid of the second row (where the logo is shown) add the following to the bottom of your themes css file:

    #header {
    display: none;
    }
    body {
    background-position: 0 85px;
    }

    If you still see a plain grey background below the header try adjusting the value of ’85px’ until it’s just right.

    Hope that helps!

    Thanks for answering!
    Sorry but it’s the Simplify theme (not extended as far as I know of).

    And the problem is underneath the “big picture” with shadow.
    https://susanne-weitemeyer.dk/

    At the moment there are four grey underlines below the picture. I wonder is we can eliminate/remove these lines?

    @nettips:

    To remove the boxes add the following code to the bottom of your css file:

    #featured-boxs {
    display: none;
    }

    You’ll then get quite a big gap between the dark shadow and then the image shadow. If you want to remove the second also then add the following code instead:

    #featured-boxs,
    .lsep {
    display: none;
    }

    You’ll need to continue customising to get the page to look right though.

    @karilebeau

    Yours is a bit more complicated because you want to keep the first row of featured boxes don’t you? Is there anyway you can disable this in the theme if there’s an options panel? Or in the actual page/post screen?

    If your set with the current look and don’t plan to change it we can apply a bit of a bodge. Add the following code to the bottom of your css:

    #featured-boxs span:nth-child(n+5) {
    display: none;
    }

    Let me know guys if you need more help.

    Both of these are really temporary fixes I’d suggest developing the code in your theme to be more flexible.

    Afzaal

    @afzaal1985
    It worked!
    You have been most helpful. Thanks a lot!

    Theme simplify extend, in the simplify options there are 13 client fields for logos with links. Is there a way to add additional clients there?

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Remove Second Row of Featured Items’ is closed to new replies.