Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter jhs2002

    (@jhs2002)

    Also, the picture size is well above the desired width, so the picture isn’t just too small. Thanks!

    Michael

    (@alchymyth)

    this is pure css correction and has primarily nothing to do with wordpress.

    there are quite a few embedded styles with ‘width:1000px;’ – so go with that width and change the following in style.css (setting the widths to 1000px and deleting some padding):
    from:

    #bar .barhead{
            background-image: url('https://www.pyrodes.com/wp-content/uploads/2010/02/header1.jpg');
            background-repeat:no-repeat;
    	width: 1000px;
    	margin: auto;
    	position:relative;
    }

    to

    #bar .barhead{
            background-image: url('https://www.pyrodes.com/wp-content/uploads/2010/02/header1.jpg');
            background-repeat:no-repeat;
    	width: 1000px;
    	margin: auto;
    	position:relative;
    padding:0 8px;
    }

    and this from

    #nav {
            width: 966px;
            margin: auto;
            background-color: #c0ca9c;
    	padding-right: 2%;
    	padding-left: 2%;
    }

    to

    #nav {
            width: 1000px;
            margin: auto;
            background-color: #c0ca9c;
    padding: 0 8px;
    }

    Thread Starter jhs2002

    (@jhs2002)

    perfect! you rock. thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Quick Header Question. Need Help!’ is closed to new replies.