How Do I change link colors on the site?
You can add borders to your site very easily with a little bit of custom CSS.
In XSitePro V1.6 - Click on Other > Scripts > Top Box
In XSitePro V2.x - Click on Other > Global Scripts > In The Head Section of the Page
Add the following code:
<style>
a {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: XXpx;
color: #XXXXXX;
text-decoration: none;
}
a:hover {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: XXpx;
color: #XXXXXX;
text-decoration: underline;
}
</style>
Adjust size, font and color as needed.
How Do I link to a specific section of a page?
Used named anchors with your links.
On the section you want to link to, place a named anchor ( the anchor symbol in the toolbar).
On your home page (or where ever you want to put the link to the section), set your link to go to the sections
main page, add the named anchor to the url using a # followed by the name of the anchor.
<a href="#Top">Click to go up</a>
|