• Resolved dangerousdave

    (@dangerousdave)


    Hi! Love the theme and started using it for my soccerteam today but after I made and uploaded a transparent png file to use as a custom header image the image dont come out transparent. I think somethings in the styles.css is showing a white box behind the image but I cant find it.

    Adress is https://www.artfex.se/brodernahiggins/

    Thanks for a great theme!

    Dave

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter dangerousdave

    (@dangerousdave)

    Hm think this got posted in the wrong section :/

    The theme is the beautiful Twenty Ten, any moderator that can help me move it? ??

    Dave

    Moderator keesiemeijer

    (@keesiemeijer)

    You can change it in your theme’s stylesheet: style.css
    Look for:

    #wrapper {
    	margin-top: 0px;
    	background: #fff;
    	padding: 0 0px;
    }

    And remove this: background: #fff;
    Look for:

    #main {
    	overflow: hidden;
    	padding: 40px 0 0 0;
    }

    and change like so:

    #main {
            background: #fff;
    	overflow: hidden;
    	padding: 40px 0 0 0;
    }

    the div #wrapper has a white background;

    find this in style.css of TwentyTen:

    #wrapper {
    	margin-top: 0px;
    	background: #fff;
    	padding: 0 0px;
    }

    and change it (remove the background from #wrapper, and add a background to #main and #footer):

    #wrapper {
    	margin-top: 0px;
    
    	padding: 0 0px;
    }
    #main, #footer { background: #fff; }
    Thread Starter dangerousdave

    (@dangerousdave)

    Ah great, thanks guys, U rock!!

    Dave

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Need help with transparent custom header image’ is closed to new replies.