Posts: 3
Threads: 1
Joined: Oct 2012
2012-10-28, 16:47:46
(This post was last modified: 2012-10-28, 16:49:39 by JAndrew.)
In the themes
Emporium and
Woodlands there is an extra vertical line at the right in the menu bar.
Can that line be removed in a simple way?
PS: My own solution -
http://moradi.no/a018_menubar/ - was not done in a simple way.
Posts: 2,094
Threads: 54
Joined: Jan 2011
RHJ Wrote:In the themes Emporium and Woodlands there is an extra vertical line at the right in the menu bar.
Can that line be removed in a simple way?
Don't know about the theme, but normally you would define the line as left border of all but the first <li>, like:
Code:
ul.sitemenu li + li { border-left: 1px solid black }
Posts: 3
Threads: 1
Joined: Oct 2012
2012-10-29, 00:37:29
(This post was last modified: 2012-10-29, 00:38:10 by JAndrew.)
Perfect!
mvlcek Wrote:Code:
ul.sitemenu li + li { border-left: 1px solid black }
Simple and it worked:
http://moradi.no/a020/
Thanks!