• Resolved chriswalshart

    (@chriswalshart)


    Hi my website is chriswalshart.com, I’ve been chipping away at it for a few weeks now, I love the Sela theme, there are just a couple more things I want to alter, the main one now is I want to remove a space on the homepage or at least alter the size of it, it’s right below the black menu bar and above the front page widgets, where the title of the page would appear (I removed it with CSS) and where it says Edit, any idea how I can edit this with CSS?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi @chriswalshart,

    I’m glad you like Sela!

    If you’re not planning to add content to that area of the theme, then you can remove it altogether with the following custom CSS:

    .front-page-content-area .hero {
        display: none;
    }

    As a note: You should not edit your theme’s style.css directly as any changes made there will be lost when it comes time to update your theme.

    Instead, either set up a child theme or activate a custom CSS plugin in order to add your custom CSS. If you have Jetpack active then you can enable its custom CSS module.

    Let me know if that helps out or if you have any further questions.

    Thread Starter chriswalshart

    (@chriswalshart)

    Hi Siobhan, I do like Sela- a lot, it means a lot to me to have a website again! I’m currently using a child theme which took some doing;) Your advice is perfect that’s done the job thank you, I don’t intend to add any content to that area but lets say you wanted to pad that area out a little bit (leave a little more space between the menu bar and the widgets), is there CSS I could use for that?

    Good to hear that CSS worked! To add a little padding to the top of your testimonials, use the following snippet:

    @media screen and (min-width: 1180px) {
    .front-widget-area, .front-testimonials {
        padding-top: 4em;
    }
    }

    You can increase/decrease the value of padding-top to your liking. Please note that increments/decrements of 0.1 are enough to have an effect e.g. 4.1em, 4.2em, etc.

    Hope that’s helpful!

    Thread Starter chriswalshart

    (@chriswalshart)

    Hi thank you for the info that’s very helpful, sorry for the delay!

    You’re most welcome! I’m glad I could help out.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove title box from homepage’ is closed to new replies.