|
Design
|
In this tutorial we'll see how to customize a Joomla button using Cascading Style Sheet (CSS).
First of all you have to know that there are more posibilities to customize the template. One of them would be integrating a module into a div that has a certain css id and then you can play with the ul, li, a style properties.
For example, to have a menu like in the left image, you can create a div with the id named "top_menu" and put the <?php mosLoadModules ( 'top' ); ?> tag into it.
The code should look like that.
<div id="top_menu">
<?php mosLoadModules ( 'top' ); ?>
</div>
Read more on how to customize Joomla menu items using CSS »
|