I would like to display the user links (sitemap -- advanced search -- ..) to display horizontally.
Now they are displayed in block
I changed already the user_links.phtml the same was as links.phtml but it still shows the user_links vertically.
Kind regards,
Kristel
1 answer
Hi there
Please open skin/frontend/default/jm_sulfur/css/theme.css file, at about line 572, find following code section:
Code:
#ja-botsl li { padding: 6px 0; background: none; display:block; overflow:hidden; width:100%; }
and change to:
and change to:
Code:
#ja-botsl li { padding: 6px 0; background: none; display:block; overflow:hidden; width:100px; float: left; }
Also, you have to make sure that the width of block is larger than number of items + 100px
This question is now closed