• I’m trying to change the height of header image under style.css. BUT no update is taking place.

    Under my theme multi-color their is an option to upload header image ” exactly 1100×200″ which i have done . Note: image will not be updated till it is been uploaded throught this option .

    At the same time I also transfered the header image file under theme image.

    BUT when I try to change the theme height under style.ccs the same has not been updated .

    header image under style.ccs coding is

      #wrapper { background: #fff; margin: 0 auto 0 auto; text-align: left;width:1100px; overflow: hidden; -webkit-box-shadow: 1px 1px 15px #000, -1px -1px 15px #000; -moz-box-shadow: 1px 1px 15px #000, -1px -1px 15px #000; }

      #header-bg {
      background:#E7E6E6 url(images/wheader.png) no-repeat scroll 0 0;
      height:230px;
      position:relative;
      border-top:5px solid #fff;

    Could anyone help . I’m new in this .

Viewing 2 replies - 1 through 2 (of 2 total)
  • the theme is writing an embedded style of #header into the head area of the page:
    #header { background: url(https://www.womenrich.com/wp-content/uploads/2010/08/cropped-wheader.jpg) bottom no-repeat; height: 200px; width: 1100px; }
    this is overwriting the styles in style.css.
    (also, there is probably no div with the id #header-bg)

    do you want to have the image higher, or amaller?

    you might be able to force the height by adding a style like this in style.css:
    #header { height: 150px!important; }
    but this will not scale the background image.

    Thread Starter ivwomen

    (@ivwomen)

    Thanks alchymyth

    I’m trying to make the image higher 250px.

    Tried to force the height but the image hight changing.

    Do you know how to make header image styles in style.css works

    Also do you now how to make the body ” blog contents area” ” a larger area.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changes in header image height and width’ is closed to new replies.