• Resolved puifon

    (@puifon)


    I would like to make changes to the big black header/bar that appear on the pages on my website, example here:

    http://www.puifonluong.com/portfolio/

    I cant seem to find it on the stylesheet, does anyone know how I can edit it, I would like to change the colour and size, or perhaps even get rid of it. It seems to change size when i edit the line height under body section, but that just squishes all the text on my site.

Viewing 2 replies - 1 through 2 (of 2 total)
  • With CSS you can always define your own styles, whether or not you are using the original set. (ie. you dont have to find it to make changes to it.

    Simply either go to the bottom of the stylesheet or create a custom.css (I would recommend doing the custom.css, because if you edit the style.css it will be overwritten when you update themes) and then create your definition there. If the styles are not updating, then try using !important at the end of each definition (for example a body background and font-size)

    body{
    background: #000!important;
    font-size: 20px!important;
    }

    BUT
    To save you all of that…I think I just found what you are looking for.
    The id is #heading
    it starts on line 348

    Thread Starter puifon

    (@puifon)

    Hi thanks for your help, and letting me know about the custom.css!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘editing css?’ is closed to new replies.