PDA

View Full Version : how to format text in guestbook etc


shelton
Jun-17-2007, 11:21 AM
hello all - in the guestbook and about pages i have entered text in the edit box along with an image - i have used <font> in one and html in the other - whats the right way to do it and how can i personalise fonts/colours etc?
thanks. jason

gman33
Jun-18-2007, 01:51 AM
hello all - in the guestbook and about pages i have entered text in the edit box along with an image - i have used <font> in one and html in the other - whats the right way to do it and how can i personalise fonts/colours etc?
thanks. jason

Jason...I will let one of the experts help you on this as I am still learning myself but wanted to let you know that the link you have to your site is incorrect

It is http://www.dgrin.com/www.jasmorgan.com

and should be www.jasmorgan.com (http://www.jasmorgan.com)

Take care
Ed

Allen
Jun-18-2007, 06:24 AM
hello all - in the guestbook and about pages i have entered text in the edit box along with an image - i have used <font> in one and html in the other - whats the right way to do it and how can i personalise fonts/colours etc?
thanks. jason Try it this way.

Replace your guestbook photo caption with this.

<html>
<p>thank you for stopping by.</P>
<p>
please leave a note here in the guestbook (put a link in too if you have one and an email if you would like a reply); i would love to hear any thoughts or comments you have.
</P>
<p>
and do come again soon, new photos are slowly but surely added on a regular basis.
</P>
<p>please feel free to drop me an email
<a href="mailto:MYEMAIL@domain.com">here</a>
</P>
<p>jason</P>
</html>
Add this to your CSS to format.

.gallery_2632323 .caption {
font-size: 120%;
color: grey;
width: 600px;
}

.gallery_2632323 .caption a {color: #aaa;}

.gallery_2632323 .caption a:hover {color: red;}

shelton
Jun-18-2007, 09:17 AM
Try it this way.

Replace your guestbook photo caption with this.

<html>
<p>thank you for stopping by.</P>
<p>
please leave a note here in the guestbook (put a link in too if you have one and an email if you would like a reply); i would love to hear any thoughts or comments you have.
</P>
<p>
and do come again soon, new photos are slowly but surely added on a regular basis.
</P>
<p>please feel free to drop me an email
<a href="mailto:MYEMAIL@domain.com">here</a>
</P>
<p>jason</P>
</html>
Add this to your CSS to format.

.gallery_2632323 .caption {
font-size: 120%;
color: grey;
width: 600px;
}

.gallery_2632323 .caption a {color: #aaa;}

.gallery_2632323 .caption a:hover {color: red;}
thanks Allen for this and Ed - well spotted.