I have a faq page where I'd like to make every answer have be followed by a
link with the text "did this answer your question?" that goes to a feedback
page.

I've set my FAQ up as a definition list where dt's hold questions, and dd's
hold answers. I've also had no problems putting nice Q's and A's before the
questions using the before psuedo element. Though I've been able to get the
question "did this answer your question to appear" using the after psuedo
element, but I can't figure out how to create the link.

Here's the link to the faq:
http://preview.standrews-de.org/academics/cc/FAQ.cfm

Here's the CSS that styles the faq:
http://preview.standrews-de.org/academics/cc/faqstyle.css

Here's the css that styles the entire page:
http://preview.standrews-de.org/css/base.css

here's what I've tried to do to create the link so far:


dd:after {    content: "Did this answer your question?";
    display: block;
    white-space: pre;
    clear: both;
    float: left;
    cursor:pointer;
    link: url(http://www.standrews-de.org);

}


Thanks,
-John
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
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