How do I decrease the space between the top of the middle content and the header?
colossium - July 4, 2008 - 04:42
| Project: | Four Seasons |
| Version: | 6.x-2.0 |
| Component: | Code |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
Hey People
I've been looking around to try and decrease the space between the top of my middle content and header so that it aligns with the top of my left and right sidebars. I had a look at the css but haven't had much luck so far.
Anyone can help me?
You can clearly see my problem here
http://www.hkactivity.com/main/

#1
you need to use firefox with the firebug plugin... here is your problem
style.css (Linie 420)
#navigation-breadcrumb {background-image:url(img/bg_breadcrumb.gif);
background-repeat:repeat-x;
border-top:1px solid #FFFFFF;
margin-bottom:10px;
padding:20px;
}
change it to
#navigation-breadcrumb {background-image:url(img/bg_breadcrumb.gif);
background-repeat:repeat-x;
border-top:1px solid #FFFFFF;
margin-bottom:0px;
padding:0px;
}