MyBB Community Forums

Full Version: Header: Trying to edit and redesign a theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am trying to edit the top part of my Forum, so I can include an image instead of a big link to my forum. The image I am thinking of placing is

http://escapethefate.net/etfforum/images...m_logo.gif

Here is the link to my forum:

www.escapethefate.net/etfforum

I have already spent over an hour searching through files...to no avail. I managed to remove the background faded grey image, but theres a white bar (about 1 px wide) on the left side that wont go away.

I also have no clue in which file to place the forum image i made. I figured with CSS, but then I would need to understand where, what settings, etc.

Any input is very appreciated thanks
This will require a few edits to your theme's global.css

add "display: none;" to h1 { }

add "display: none;" to #header .description { }

Find (in #header):
background: url(images/darkintentions/headergradient.jpg) black;

Replace with:
background: #000 url(images/darkintentions/forum_logo.gif);


I'm sure more tweaking will need to be done but this should be a good start.
Thanks!