2012-02-26 0:54, Stuart King wrote:

http://skingdesign.com/rc_site/pages/rec_lemony.html

I cannot figure out how to make the current page underlined and with a
darker color (#6B382B) so it stands out.

Change the markup for it to contain a suitable inline container, e.g. instead of

<p><img src="../images/triangle.gif" width="24" height="10" alt="triangle image" />Lemony Mushroom and <br />
    Pine Nut Stuffing Muffins</p>

use

<p><img src="../images/triangle.gif" width="24" height="10" alt="" /><a class="current">Lemony Mushroom and <br />
    Pine Nut Stuffing Muffins</a></p>

and use CSS code

.current {
  text-decoration: underline;
  color: #6B382B;
}

(This will greatly confuse people who are accustomed to regard underlining as indicating text as a link on web pages.)

Yucca


______________________________________________________________________
css-discuss [css-d@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to