Menu Items Divider

GK User
Thu Jan 12, 2012 7:14 pm
Hi there,

How to remove the divider between the menu items?

Home | XXX | xxxxx | Contact us

I would want to remove "|


Marcus
User avatar
Fresh Boarder

GK User
Thu Jan 12, 2012 7:28 pm
Please open file menu.css from template/css directory and then find line 22 :
Code: Select all
#gkMainMenu > div > ul > li > a { padding: 0; display: block; height: 26px;line-height:28px; font-size: 18px; text-transform: uppercase; color: #fff; margin: 10px 0 0 0; border-left: 1px solid #303030; padding-left: 16px; }


all that you need to do is delete border-left value so this line should be like this :

Code: Select all
#gkMainMenu > div > ul > li > a { padding: 0; display: block; height: 26px;line-height:28px; font-size: 18px; text-transform: uppercase; color: #fff; margin: 10px 0 0 0;padding-left: 16px; }
User avatar
Platinum Boarder

GK User
Wed Jan 18, 2012 2:28 am
Thanks a lot it worked.
User avatar
Fresh Boarder


cron