Viewing 1 replies (of 1 total)
  • Thread Starter revanslacey

    (@revanslacey)

    Wow. That wasn’t easy but I’ve cracked it.

    The place to start is in your browser. You need to right click and go ‘inspect’

    You will see lots of complex looking code. Fiddle around until you work out how to relate the code to the stuff that you want to change … like the title and the central box for me.

    When you’ve identified the bits the next thing is to see that you can turn properties (if that’s what they are called) on and off for each bit … there are some tick boxes that let you do that inside the inspector. When you change them in the inspector you can see the effect they will have on the page.

    Once you have worked out what you need to change you need to make those changes in the code of the theme in wordpress: the cascading style sheet or CSS.

    Find that in WP by going Appearance: Editor

    Scroll to the bottom and make your changes there. This is the code that I created to alter the CSS:

    .post-heading {
    display: none;
    }

    #single-header .container {
    margin-top: 0px;
    padding-bottom: 0px;
    }

    .content-container {
    background: none;
    border: none;
    }

    After you add your code save the CSS and refresh the browser you were using to look at your web page. Did it change as you had hoped?

    • This reply was modified 8 years, 5 months ago by revanslacey.
Viewing 1 replies (of 1 total)
  • The topic ‘How to remove page title and insert hero flush with menu bar?’ is closed to new replies.