Have you ever wanted to have different styles for each page in your site? For example, in page A, the link's color is green while in page B is red, can that be done? The answer is a big yes, and it's a really simple one.
Just open the Page Settings and insert this code in the "Page Header Tags" textbox:
<style type="text/css">
<!--
a:link { color:green }
a:hover { color:red }
//-->
</style>
|
Inside the <style></style> tag, insert your desired styles, and that's it!
*Note: instead of configuring the styles inline, you can also link to a different style sheet; but IMO, that is an overkill! |