Ask
I was wondering if it was possible te make the white bar above the horizontal navigation smaller on teplate beez_20 in Joomla 2.5?
Answer
Open file /templates/beez_20/css/personal.css
Find:
#all #header {
padding-top: 8.0em;
}
Change padding-top:8em; to smaler value, e.g. padding-top: 3em;
Find:
#header ul.menu {
top: 5em;
padding: 0px 0px 0px 0 ;
background:#e0e0e0 url(../images/personal/ecke.gif) top left repeat-x ;
border:0 ;
text-align:left;
left:0px;
display:block;
margin:0px 10px 0 10px;
border-top:solid 1px #ddd;
}
Change top: 5em; to smaler value, e.g. top: 0.5em;
Note:
- You can use px units instead of em
- If you publish Search Module on the right, please change these codes:
Find:
#line {
width: 98%;
max-width: 100%;
top: 0px;
left: 0px;
padding: 5px 10px !important;
margin-right: 10px;
text-align: right;
}
Replace with:
#line {
width: auto;
top: 5px;
right: 0px;
padding: 5px 10px !important;
margin-right: 10px;
text-align: right;
}