Kubrick Header edit rounded corners
-
Im trying for the life of me to get rid of the rounded corners in the Kubrick Header. I managed to loose the two top ones by adjusting the height and making it shorter, but cant get rid of the two bottom ones. I also would like to get rid of the double border thats around the entire page. I think it might be an image, is there anywhere i can go and delete that, or set it to a solid color?
Thanks so much!!The blog I need help with is: (visible only to logged in users)
-
The rounded corners in the header that comes with the Kubrick theme are built into an image, see http://s0.wp.com/wp-content/themes/pub/kubrick/images/header-img.php?upper=4e2b05&lower=4e2b05
To remove that background image completely, you can hide it with CSS like this:
#header { background: none; }Or if you wanted to remove the background image and add a plain background color instead, try this:
#header { background: #4e2b05; display: block; margin-left: 10px !important; width: 740px; }
- The topic ‘Kubrick Header edit rounded corners’ is closed to new replies.