I have content like this

                <div class="entryHeader">
                <h1><a
href="#application.blog.makeLink(id)#">#title#</a></h1>
                
                <div class="byline">#rb("postedat")# :
#application.localeUtils.dateLocaleFormat(posted)#
#application.localeUtils.timeLocaleFormat(posted)# 
                <cfif len(name)>| #rb("postedby")# : #name#</cfif><br />
                #rb("relatedcategories")#:
                <cfset lastid = listLast(structKeyList(categories))>
                <cfloop item="catid" collection="#categories#">
                <a
href="#application.blog.makeCategoryLink(catid)#">#categories[currentRow][ca
tid]#</a><cfif catid is not lastid>,</cfif>
                </cfloop>

                </div>
                </div>
And I have two classes like this

..entryheader h1 A:link{
        font-family: "Trebuchet MS", verdana,arial, sans-serif;
        font-size: 1.3em;
        font-weight: bold;
        margin: 0;
        color: #ffffff;
}
..entryheader h1 a:hover{
        font-family: "Trebuchet MS", verdana,arial, sans-serif;
        font-size: 1.3em;
        font-weight: bold;
        margin: 0;
        color: white;
}

But the second class does not get applied to the link, why, what have I done
wrong ?

Russ



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
up-to-date ColdFusion information by your peers, delivered to your door four 
times a year.
http://www.fusionauthority.com/quarterly

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:257942
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to