Gossamer Forum
Home : Products : Links 2.0 : Customization :

Font Size

Quote Reply
Font Size
How do I change my links text size?
Quote Reply
Re: [LordStryfe] Font Size In reply to
If you're using CSS, use the links.css file, otherwise make changes in link.html.

<ul><li><a class="link" href="<%db_cgi_url%>/jump.cgi?ID=<%ID%>"><%Title%></a>
<%if Description%>
<span class="descript">- <%Description%></span>
<%endif%>

...or...

<ul><li><a href="<%db_cgi_url%>/jump.cgi?ID=<%ID%>"><font size="2" face="Arial"><%Title%></a>
<%if Description%>
<br><%Description%></span>
<%endif%>
</font>


Leonard
aka PerlFlunkie
Quote Reply
Re: [PerlFlunkie] Font Size In reply to
I'm actually using two different css files. Have a look and let me know if you don't mind what needs to be changed to get this working correctly. www.wespreadtheword.net
Quote Reply
Re: [LordStryfe] Font Size In reply to
I did a quick look at your CSS files and your page code.
Keep in mind that what is last, or closest to the text, is what will take precedence, so this is the priority level for your Category links...

11. <body> font: normal 11px tahoma, geneva, verdana, sans-serif;
10. <div class="wrapper"> text-align: left;
9. <div class="shadowright">
8. <div id="content">
7. <font face="Arial" size="2">
6. <div class="margin">
5. <td class="catlist" valign="top">
4. <dl>
3. <dt>
2. <strong> (bold)
1. <a class="link" ...
Articles & Essays (effected text)
</a>
</strong>
1. <small class="numlinks">
(53)
</small>
</dt>
</dl>

Each item with a "class" is using CSS, which can be used to define the font details to be used. Putting the <font face="Arial" size="2"> where it is renders it last in line, so it may as well not be there, assuming one of the classes is defining the font.

This is the priority level for your off-site links...

8. <body> font: normal 11px tahoma, geneva, verdana, sans-serif;
7. <div class="wrapper"> text-align: left;
6. <div class="shadowright">
5. <div id="content">
4. <ul>
3. <li> font-size: 12px;
2. <font face="arial size="2">
1. <a class="link"
10 Reasons to Believe in the Christian Faith
</a>
</font>
1. <font face="arial size="2">
- Lists and explains "10 reasons to believe" for various aspects of Christian doctrine.
- </font>
1. <font face="arial size="2">
(Added: 13-Apr-2003)
[Rate It]

</font>
</ul>

Note missing double quote:
2. <font face="arial" size="2">

Several classes are not defined in your CSS files, so I suggest adding them (copy from links.css).

Gotta run right now, hope this helps...


Leonard
aka PerlFlunkie