Custom CSS class feature

A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.

This thread is closed to new posts. You must sign in to post in the forums.
12/21/2010 9:39:46 AM
Gravatar
Total Posts 76

Custom CSS class feature

Hello,

How can I use this Custom CSS Class feature on components?

Should I provide link to a css file here? or should I just type something like ..logolist {something} ?

Thanks

12/21/2010 10:41:25 AM
Gravatar
Total Posts 1203
Proud member of the mojoPortal team

Help support mojoPortal!
Add-on modules

Re: Custom CSS class feature

Here's a simple example to get you started:

Suppose your CSS has the following directive:

body { font-size: 13px; }

So the base font size throughout your site is 13 pixels. Now you decide that you want some of your HTML instances to have larger text, for additional impact. You can add the following to your CSS:

.bightml { font-size: 16px; }

Now, you just add the "bightml" custom CSS class to any of the HTML features that should be given the larger font.

The presence of that custom CSS class gives you almost limitless styling possibilities for your site.

Jamie

 

12/23/2010 2:11:28 AM
Gravatar
Total Posts 4

Re: Custom CSS class feature

Thanks Jamie... :)

You must sign in to post in the forums. This thread is closed to new posts.