View Full Version : HELP. Need to change text size in comments
sfdav
Jan-21-2009, 12:35 PM
Hello. I just began to update my site davidvillanueva.smugmug.com and I am having trouble changing the text size in the comments section of the guestbook. The text size is the same as the top header. I want to keep the same text style but just want to decrease in size. Thanks.
sfdav
Jan-21-2009, 12:48 PM
Actually I would like to change all the comments text size. The current text size is waaaaay too big. Thanks again.
davidvillanueva.smugmug.com
jfriend
Jan-21-2009, 04:58 PM
Hello. I just began to update my site davidvillanueva.smugmug.com and I am having trouble changing the text size in the comments section of the guestbook. The text size is the same as the top header. I want to keep the same text style but just want to decrease in size. Thanks.
You have this in your custom header:
<style type="text/css">
p { font: 30pt/26pt copperplate gothic light}
</style>
That is causing all text in <p> tags to be huge including the comment text. Here's what I would suggest you do:
1) Change your custom header to this:
<div id="myHeader">
DAVID VILLANUEVA PHOTOGRAPHY
</div>
<div id="navcontainer">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/gallery/7150836_dExeK">About Me</a></li>
<li><a href="http://davidvillanueva.smugmug.com/galleries">Photos</a></li>
<li><a href="/gallery/7151249_NQ62t">My Blog</a></li>
<li><a href="/gallery/7147655_FRE2N">Guestbook</a></li>
</ul>
</div>
Add this to your CSS in site-wide-customization:
#myHeader {font: 30pt copperplate gothic light; text-align:center;}
Then, to clean up a bunch of other details in your guestbook, do the following:
Turn off printing for the gallery (this makes the buy and cart buttons go away).
Turn off easy sharing for the gallery (this makes the Share button go away).
Add this CSS to make the slideshow button, the breadcrumb navigation and the page navigation go away.
.gallery_7147655 #slideshowButton,
.gallery_7147655 #breadCrumbTrail,
.gallery_7147655 .pageNav {display:none;}
Make these changes and see then we can see if that takes care of everything.
sfdav
Jan-21-2009, 09:12 PM
You have this in your custom header:
<style type="text/css">
p { font: 30pt/26pt copperplate gothic light}
</style>
That is causing all text in <p> tags to be huge including the comment text. Here's what I would suggest you do:
1) Change your custom header to this:
<div id="myHeader">
DAVID VILLANUEVA PHOTOGRAPHY
</div>
<div id="navcontainer">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/gallery/7150836_dExeK">About Me</a></li>
<li><a href="http://davidvillanueva.smugmug.com/galleries">Photos</a></li>
<li><a href="/gallery/7151249_NQ62t">My Blog</a></li>
<li><a href="/gallery/7147655_FRE2N">Guestbook</a></li>
</ul>
</div>
Add this to your CSS in site-wide-customization:
#myHeader {font: 30pt copperplate gothic light; text-align:center;}
Then, to clean up a bunch of other details in your guestbook, do the following:
Turn off printing for the gallery (this makes the buy and cart buttons go away).
Turn off easy sharing for the gallery (this makes the Share button go away).
Add this CSS to make the slideshow button, the breadcrumb navigation and the page navigation go away.
.gallery_7147655 #slideshowButton,
.gallery_7147655 #breadCrumbTrail,
.gallery_7147655 .pageNav {display:none;}
Make these changes and see then we can see if that takes care of everything.
JOHN,
Thank you so much. That did it! Appreciate your help!
DAV
vBulletin® v3.8.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.