I have an group of html pages. They load the header, logo, menu, and footer from separate html pages using embed. What I want to do is change the color of the current page catagory in the menu. Before I moved to using embed, I just did:
<li><a href="./CurrentPage.html" class="current">CurrentPage</a></li>
menu li a.current {
color: #ffffff;
}
I'm just starting to get into web design, hence the noob question.
Any help is appreciated.
EDIT
I moved away from using iframe to embed. I really need this to be 100% client side. I'm using Dropbox to host my pages for now, hence the lack of SSI. Perhaps JavaScript is my best option?...
Thanks