Needs review
Project:
fblike
Version:
5.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
8 Apr 2008 at 12:38 UTC
Updated:
8 Apr 2008 at 12:38 UTC
The side navigation has a "side_nav" class, but the CSS assumes it has a "side_nav" id.
page.tpl.php defines the side navigation as class "side_nav":
<div class="side_nav">
<?php print $sidebar_left ?>
</div>
However, style.css tries to apply styles to an element with id "side_nav":
#side_nav ul.menu {
margin: 0.35em 0 0 -0.5em;
padding: 0;
}
The patch converts all of the "side_nav" in the CSS to apply to a class instead of id.
| Comment | File | Size | Author |
|---|---|---|---|
| fblike_sidenav_is_a_class.patch | 1.23 KB | jorgeegomez |