PDA

View Full Version : Text in Links in my Html are small after posting


chrism2029
Aug-09-2007, 07:32 AM
The image below is what I want to remove. Also I am racking my brain on the Links I put in the Html. The problem is when I preview it in Frontpage or IE the link's Fonts are small. Why is that? You can also see it in the image. Here is the code?
<html>
<body>
<p><font face="Comic Sans MS" size="5"></p>
<a href="<A href="http://www.photosetcnorfolk.com/gallery/3265914">Model">http://www.photosetcnorfolk.com/gallery/3265914">Model Packages</a></p>
<a href="<A href="http://www.photosetcnorfolk.com/gallery/3265911">Parties">http://www.photosetcnorfolk.com/gallery/3265911">Parties or Events</a></p>
</body>
</html>

http://photosetc.smugmug.com/photos/182099680-L.jpg

www.photosetcnorfolk.com (http://www.photosetcnorfolk.com) or http://www.photosetcnorfolk.com/gallery/3261040

Allen
Aug-09-2007, 09:52 AM
The image below is what I want to remove. Also I am racking my brain on the Links I put in the Html. The problem is when I preview it in Frontpage or IE the link's Fonts are small. Why is that? You can also see it in the image. Here is the code?
<html>
<body>
<p><font face="Comic Sans MS" size="5"></p>
<a href="<A href="http://www.photosetcnorfolk.com/gallery/3265914">Model">http://www.photosetcnorfolk.com/gallery/3265914">Model Packages</a></p>
<a href="<A href="http://www.photosetcnorfolk.com/gallery/3265911">Parties">http://www.photosetcnorfolk.com/gallery/3265911">Parties or Events</a></p>
</body>
</html>
www.photosetcnorfolk.com (http://www.photosetcnorfolk.com) or http://www.photosetcnorfolk.com/gallery/3261040
Try this.
Replace your description with this.

<html>
<p>
<a href="http://www.photosetcnorfolk.com/gallery/3265914">Model Packages</a>
<br /><br />
<a href="http://www.photosetcnorfolk.com/gallery/3265911">Parties or Events</a>
</p>
</html>

Add to your CSS.

.gallery_3261040 #albumDescription a {
font-family: Comic Sans MS;
font-size: 120%;
color: #ccc;
}

.gallery_3261040 #albumDescription a:hover {
color: red;
}

.gallery_3261040 .nophotos h3,
.gallery_3261040 #breadcrumb {display: none;}

BTW, I think you can have only one body on a page.

chrism2029
Aug-09-2007, 04:38 PM
Is there any way I could put something else in there for all my galleries instead of having to do it for each one and future ones at that?

chrism2029
Aug-11-2007, 04:55 AM
Is there any way I could put something else in there for all my galleries instead of having to do it for each one and future ones at that?

Found smething that helped out.