By Gunny-1 on
i just refered to this site with the article taming lists.
http://www.alistapart.com/articles/taminglists/
#pipe ul li.first {
margin-left: 0;
border-left: none;
list-style: none;
display: inline;
}
#tabs ul li.here {
border-bottom: 1px solid #ffc;
list-style: none;
display: inline;
}
Drupal chameleon theme uses the pipe and tabs for menus. I traced through MENU_LOCAL_TASK in drupaldocs and i encountered these lines,
$output .= "<ul class=\"tabs primary\">\n"; ...
$output .= "<ul class=\"tabs secondary\">\n";
From the theme css all i could get is,
.primary a {
font-size: 1.0em;
padding: 0em 0.5em 0em 0em;
}
.secondary a {
font-size: 0.9em;
padding: 0em 0.5em 0em 0em;
}
So where are the pipe and tabs implemented in chameleon as explained in taming lists article?
i could'nt spot the same in chameleon.
Comments
I also would like to know
I also would like to know this.
Unfourtunately, it's very hard to replace simple things in Drupal, such as replacing pipe's with br's...