Ok.. You are talking Phase 11, Rounded corners on modules in the video which starts at 8:00 mins in... Correct?
If so, you will first need to create the image files for the rounded corners and upload them to your images folder.
Next, you add the CSS codes as illustrated in the video. These codes may be added to the template.css file located in the css folder.
ie: templates/[template_name]/css/template.css
In the video it first the attributes needed for the rounded corners and then another new class, "moduleblue" for the blue rounded corner modules.
The first set of css codes applies to ALL modules while the second set (blue) applies only to modules with the "moduleblue" class added to the module in the module's properties. The module properties can be found in the "Module Manager" under the "Extensions" tab.. Click on the Title of the module you would like to change to get into it's properties.
Look for "Advanced Options" for "Module Class Suffix" and type the name of the class there.
One thing you should note first though is that the module already carries a class named "module". When you type in the "Module Class Suffix" - for example: "snazzy" - field it appends it to the class that is already there. In the case of the example, you would get "modulesnazzy" and to make this work, you will have to have "modulesnazzy" as the name of the class in your css file. This is why in the video, they only typed, "blue" when in the CSS codes it says "moduleblue".
There's one thing that I noticed the video didn't say, which is that you need 4 divs to be able to do this. To get Joomla to output 4 divs, the module position style attribute should be set to "rounded".
In the T3 template, you can do this in your layout. You will have to check the T3 tutorials for find out exactly how to do this though.
You should take into account also that those videos are somewhat outdated now. You don't really have to use images to create rounded corners anymore. This can be done using CSS3 attributes.
Example:
HTML Code:
.moduleblue {border:1px solid blue; -webkit-border-radius:8px; -moz-border-radius:8px; border-radius:8px;}
To understand this better, you should read up on CSS more. There are some great tutorials on the web.
Bookmarks