login-form-now-has-cssIn the last tutorial within our building a basic Joomla 3.0 template tutorial series, we showed you how to add style to login form using CSS. You can see in the screenshot to the right how this added a grey background and rounded corner to the login form. You can also see however that the other items in the sidebar still do not have any style added to them.

 
css-classes-labeled

Locating our CSS classes

To add style to the rest of the items in the sidebar, we need to know either their classes or ids. We've done the work for you and labeled each section and the corresponding label we used to modify their styles (see the screenshot to the right).

As you can see, we're working with the following items:

  • ul.nav.menu
  • .category_module
  • .weblinks
  • .mostread
  • .syndicate-module
 

The final look after making changes

all-right-sidebar-now-has-styleBefore we show you the CSS code that we used to style the rest of the modules in the sidebar, we'll skip ahead and show you the results. The screenshot to the right shows how our Joomla 3.0 template looks after we finished styling all of the elements in the right sidebar.

 

Applying a uniform style to the sidebar

Adding the rounded corners

Because our login form has a grey background and rounded corners, we'll apply the same style to the other sidebar modules. We don't need to copy the code we already added, instead we can add to it. In the code below, the green text is the original css code for the login form, and the text in red is the updates.

.mostread,
.weblinks,
.category-module,
.syndicate-module,
ul.nav.menu,
#login-form { -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; border-radius: 5px; background:#eee; border:1px solid #ccc; padding:5px; margin:0px 0px 10px 0px; }

Adjusting padding on the unordered lists

Because most of the modules are actually unordered lists, we found that adding some padding to the lists made them look much better:

.mostread, 
.weblinks,
.category-module {
padding:0px 0px 0px 20px;
}

Setting the .syndicate-module to be a block element

Finally, for everything to appear correctly, the .syndicate-module must be set to a block element:

.syndicate-module {
display:block;
}

 

Our final stylesheet

After making the updates mentioned above, our css/style.css file looks like the following:

.mostread, 
.weblinks,
.category-module,
.syndicate-module,
ul.nav.menu,
#login-form {
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
-khtml-border-radius: 5px;
border-radius: 5px;
background:#eee;
border:1px solid #ccc;
padding:5px;
margin:0px 0px 10px 0px;
}

.mostread,
.weblinks,
.category-module {
padding:0px 0px 0px 20px;
}

.syndicate-module {
display:block;
}
Like this Article?
turdidesings 2013-03-26 5:43 pm
You're awesome !! Very basic, but everything I needed to begin.

Thank you !!!!

Keep up the good job !!

Best regards,

Login to comment.

Your Opinion Matters

... but we need to know what you're thinking!

I'm Brad Markle, your friendly Community Support technician, and I wrote the article you're looking at now. I like to think it's perfect, but I'm sure you have some suggestions. Please, let me know what they are!

Feedback
Your Email Address
Because we'd like to talk with you!

Latest Questions

If you need some help, submit your question to our Community!
We guarantee a response within 60 minutes (8am - 9pm EST, Monday - Friday)
Ask a Question!
Recent Questions
  1. blocked from logging into wordpress
  2. Connection Refused
  3. renew

Need more Help?

Search

Ask the Community!

Get help with your questions from our community of like-minded hosting users and InMotion Hosting Staff.

Current Customers

Chat: Click to Chat Now E-mail: support@InMotionHosting.com
Call: 888-321-HOST (4678) Ticket: Submit a Support Ticket

Not a Customer?

Get web hosting from a company that is here to help. Sign up today!