How can i add a background color to the asides post so that it shows up differently on the site?
How can i add a background color to the asides post so that it shows up differently on the site?
I actually figured it out on my own.
dude. how?
otronix,
In order to do that you need some knowledge with CSS. Some tips:
1. Assign a CSS class to your template tags like this:
<p class="myclass">...</p>
and define myclass in your CSS file.
2. Assign a background color with inline CSS like this:
<p style="background-color: #F0F0F0;">...</p>
where #F0F0F0 is hexadecimal value of the color of your choice.
Cheers
You must log in to post.