Hi,
This is actually quite easy to do and can be done with any of the modules within mojoPortal.
- Come up with a new class name that you will use to refer to the blog that you want to change. For this example, I'll use "myblog" but you can use whatever helps you remember what the class is for.
- Add the "myblog" class (without quotes) to the "Custom CSS Class" option in the Blog Module Settings on the blog you want to change. This setting is under the "Miscellaneous" section of the settings.
- Open your styleblog.css file and add this selector and rule to it:
.myblog .blogtitle { font-size: 12px; }
Your selector may need to be a little bit more precise, depending on the CSS already in your skin. If the above doesn't work, try something like .myblog h2.blogtitle a { font-size: 12px; }
If you want to target all blogs that are in the right pane, you could also skip the first two steps and just add this to your CSS: .rightside .blogtitle { font-size: 12px; }
HTH,
Joe D.