You are here: Forum Home / RapidWeaver User Forum / HTML, CSS, and Design Help / Thread
I have just started using Rapid Weaver and am very pleased so far. I do have one want however - I would like to use the Magnesium Theme but do not like the two color options the theme offers (Electric Blue & Pink). Is there a way I can change the highlight color on the menus?
We are what we repeatedly do. Excellence, therefore, is not an act but a habit.
Aristotle
That is done with graphics. you could open up the theme package and replace the images or adjust them in an image editor.
But work with a duplicate so you retain the original.
1. Right click on the theme in the theme drawer
2. Select “Duplicate” from the pop up menu
3. Give it a new name that is different from the original
4. Right click on the new duplicate theme
5. Select “Show Contents”
Now you have access to the files. See the images folder.
Hope this helps
Support Casts - Short Video Trainings
MacSupportCasts - Mac Learning Made Easy
Inside Rapidweaver - Books, Themes and More…
Thanks - That worked out great. Now I would like to change the menu highlight color as well. Any suggestions?
We are what we repeatedly do. Excellence, therefore, is not an act but a habit.
Aristotle
Here is the set of CSS you can use in the Custom CSS Panel of the page inspector for each page you want to change the Nav Menu
a:link, a:visited {
color: #ffffff;
text-decoration: none;
}
a:hover, a:active {
color: #adfcff;
}
#navcontainer #current {
color: #adfcff;
text-shadow: 0px -1px 3px #2b6568;
}
#navcontainer .currentAncestor {
color: #adfcff;
text-shadow: 0px -1px 3px #2b6568;
}
#navcontainer a:hover {
color: #adfcff;
}
Support Casts - Short Video Trainings
MacSupportCasts - Mac Learning Made Easy
Inside Rapidweaver - Books, Themes and More…