Need to move or remove logoheader, nav system, font resizer - Joomla! Forum - community, help and support
hi. using beez 3 template, , want remove font resizer @ top , make logoheader or personal2.png less tall. in addition, i'd put navigation under logoheader instead of on top of it. can't figure out how this. when tried commenting out html or css, left white space other things before, , i'd need them move make room articles under them.
thank you!! appreciate help.
thank you!! appreciate help.
try following:
(a) remove font resizer - in following css available in file position.css located in directory /templates/beez3/css, add css attribute display: none;
(b) move menu below header image - in following css available in file position.css located in directory /templates/beez3/css, remove/comment css attribute position: absolute;
(a) remove/alter white space above header image - in following css available in file position.css located in directory /templates/beez3/css, remove/comment/modify css attribute padding: 8em 0 0 0;
note: make sure take copy of file before editing it.
(a) remove font resizer - in following css available in file position.css located in directory /templates/beez3/css, add css attribute display: none;
code: select all
#line {
padding: 5px 0 2px 2px;
position: absolute;
right: 10px;
top: 0.5em;
max-width: 40em;
text-align: right;
min-width: 40em
}(b) move menu below header image - in following css available in file position.css located in directory /templates/beez3/css, remove/comment css attribute position: absolute;
code: select all
#header ul {
position: absolute;
left: 0;
top: 5em;
right: 0;
display: block;
margin: 0 0 1px 0;
text-align: right;
list-style-type: none;
padding: 10px 0
}(a) remove/alter white space above header image - in following css available in file position.css located in directory /templates/beez3/css, remove/comment/modify css attribute padding: 8em 0 0 0;
code: select all
#header {
display: block !important;
position: relative;
padding: 8em 0 0 0;
overflow: hidden;
}note: make sure take copy of file before editing it.
Comments
Post a Comment