I have more items than those shown in the main menu. How do I reduce the size of the source of the main menu to show me that?
How I can create a "middlemenu2" in the template The News of the World 2, with the same format as the middlemenu?
Thanks
Don Lee wrote:Hi,
Can I have your link to check and give you instruction?
What do you mean by "middlemenu"? Is it the main menu? If so you can't clone it as it will make a script that conflicts the current one.
#gkTopMenu1 .menu li:first-child {
background: none repeat scroll 0 0 transparent;
padding-left: 17px;
}
#gkMainMenu > div > ul > li > a {
background: url("../images/style1/menu_separator.png") no-repeat scroll right top transparent;
color: #FFFFFF;
display: block;
font-size: 18px;
height: 39px;
line-height: 40px;
padding: 0 17px 0 19px;
text-shadow: -1px -1px 0 #A92009;
}
Don Lee wrote:You can do as following::
Open /templates/gk_twn2/css/template.css
Find:
- Code: Select all
#gkTopMenu1 .menu li:first-child {
background: none repeat scroll 0 0 transparent;
padding-left: 17px;
}
Change the "17px" to be a smaller number such as "3px".
Open /templates/gk_twn2/css/menu.css
Find:
- Code: Select all
#gkMainMenu > div > ul > li > a {
background: url("../images/style1/menu_separator.png") no-repeat scroll right top transparent;
color: #FFFFFF;
display: block;
font-size: 18px;
height: 39px;
line-height: 40px;
padding: 0 17px 0 19px;
text-shadow: -1px -1px 0 #A92009;
}
Change padding values.
Then let me know if it helps.