Gossamer Forum
Home : Products : Gossamer Links : Discussions :

How to Change Paging CSS Format?

Quote Reply
How to Change Paging CSS Format?
I am not able to use formatting with custom css tags within category.html

Here are the tags that I am using:
Quote:
<%if paging.num_hits%><div class="rightalign"><%Links::Utils::paging(button_id => 'paging_button3')%><br></div><%endif%>

paging_options Global
Quote:
sub {
return {
max_pages => 5,
boundary_pages => 1,
style => 3,
style_next => "[&gt;]",
style_prev => "[&lt;]",
style_first => "[&lt;&lt;]",
style_last => "[&gt;&gt;]",
style_nonext => "",
style_noprev => "",
style_nofirst => "",
style_nolast => "",
paging_pre => "Pages: ",
};
}

Now the problem is.. the default CSS link tag on the site is
Quote:
a:link,a:visited{
color : #003366;
font : 100% Georgia, Arial, sans-serif;
text-decoration : none;
}
a:hover{
color : #993300;
font : 100% Georgia, Arial, sans-serif;
text-decoration : underline;
}
However for Paging Links I wish to use:
Quote:
a:link.paging,a:visited.paging ,a:hover.paging {
font : bold 100% Arial, Helvetica, sans-serif;
color : White;
text-decoration : underline;
}

Any idea on how to do this?

Thank you.

Vishal
-------------------------------------------------------
Subject Author Views Date
Thread How to Change Paging CSS Format? VishalT 2127 Mar 4, 2007, 9:01 PM
Thread Re: [SWDevil.Com] How to Change Paging CSS Format?
brewt 2043 Mar 7, 2007, 1:04 PM
Post Re: [brewt] How to Change Paging CSS Format?
VishalT 2044 Mar 7, 2007, 2:39 PM