CSS for buddypress
-
small problem in:
/wp-content/themes/mesocolumn/lib/buddypress/bp-custom-css.css div.item-list-tabs ul li.selected a, div.item-list-tabs ul li.current a border-top: 1px solid #CCC;
you add one pixel at the top of the selected “a” to make a nice border but this make that this LI is 31px height instead of 30px for unselected ones
The problem is that when you reduce the width of the windows and this breaks the LI in two lines, the second line start only after the selected one.
You need to have all your li with the same height
To solve this problem i add manually in the custom CSS a
padding-top: 4px;
for the selected one (instead of the default 5px,… this is certainly not the best way to solve the problem but do the job …Regards
Olivier Bourgeois
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘CSS for buddypress’ is closed to new replies.