Changing header size
-
Hi there, I am brand new to CSS and completely clueless on how it works. I am using the forever theme and have 2 problems I was hoping you could help with
1) my header appears in a box at the top of the page, is there any way of removing the outline of the header ?
2) I was hoping on removing the shaded border around the blog and instead have my content on teh white background spread across the entire screenhopefully this all makes sense and you could provide tips on how I can achieve this.
thanks!
The blog I need help with is: (visible only to logged in users)
-
To get rid of the border in both places, you can use CSS. For the header, add this code to the custom CSS:
#masthead img { border: none }For the content area, use this:
#page { border: none; width: 100%; } #content { max-width: 1000px }Change the 1000px to whatever looks best to you. It is currently set to 560px.
There are many great video tutorials and websites out there that can help explain the basics of CSS. That’s how I got started.
- The topic ‘Changing header size’ is closed to new replies.