
Changing the background color of the navigation bar
Install this code in your profile :
<style>
.navigationBar tr td {
background-color: black;
}
</style>
Change the color “black” for the color that you want in the background. You can see the possible color names here.
Changing the link color of the navigation bar links
Install this code in your profile :
<style>
a.navBar:link,
a.navBar:visited {
color: black;
}
</style>
Change the color “black” for the color that you want in the background. You can see the possible color names here.
Hiding the navigation bar
Install this code in your profile :
<style>
.navigationBar tr td {
display: none;
}
</style>
