• Hi there! Would like to increase the space above title H1, H2, H3. Which CSS should I use? Other opportunties? Thank you bye

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • You can use your browser’s DOM inspector to inspect and real-time (temporarily) modify the css element(s).

    That said, I would use:

    .post-title

    i.e.,

    .post-title {

    margin-top:40px:

    }

    or you could use padding-top or maybe even be tag-specific like:

    .post-title h1 h2 {…

    This would go in the theme’s “additionsl css” in the appearance->theme settings->additionsl css (or equivalent), although I never use nor do I recommend adding css dynamically like this, but inexperienced theme coders often do this.

    See a screengrab of your own website here: https://imgur.com/a/e5yWQY7

    To use the DOM inspector on most browsers enter F12 or right click on the web page in question at the position to inspect and select “Inspect Element.”

    Thread Starter elenaferro

    (@elenaferro)

    Thank you Brian, I think I’m not allowed to do this. In personalization field I can’t find any place to modify this by myself… Opss

    You could also create what is called a “child theme” and modify the static style.css there.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Space above H1, H2, H3’ is closed to new replies.