PDA

View Full Version : Line removal in Guestbook and Bio


KiwiLight
Mar-21-2009, 11:57 AM
I have just started putting together my site based on your excellent tutorials and helpful threads.....

Do you any of you pros out there know the code to remove the line breaks above and below the single photos in my Guestbook and Bio pages?

http://www.richpics.co.nz/gallery/7672659_4TCEx

Thanks

Rich

J Allen
Mar-21-2009, 03:16 PM
Add this to your CSS to clean up those pages:





/*====About Me-Page====*/
.gallery_7672659 #breadCrumbTrail,
.gallery_7672659 .play_slideshow,
.gallery_7672659 #albumNav_top,
.gallery_7672659 #albumNav_bottom,
.gallery_7672659 .nophotos h3,
.gallery_7672659 .pageNav
{display:none;}
.gallery_7672659 .journal_entry
{border:none;}




/*====Guest-Book-Page====*/
.gallery_7672673 #breadCrumbTrail,
.gallery_7672673 .play_slideshow,
.gallery_7672673 #albumNav_top,
.gallery_7672673 #albumNav_bottom,
.gallery_7672673 .nophotos h3,
.gallery_7672673 .pageNav
{display:none;}
.gallery_7672673 .journal_entry
{border:none;}








Remove this from your CSS, and put it in your 'Bottom Java-Script Box':



// fix the pesky pipes

YE.onAvailable("cobrand_footer", function() {this.innerHTML = this.innerHTML.replace(/\||what are feeds\?/gi, '');});






Here are a few suggestions to try out also:


/*====Tighten Homepage====*/
#userBio {padding:0;}
#homepage {padding-top:0;}
.homepage #breadcrumb
{display:none;}




/*=====No More Green Color!!!=====*/
.title,
a.title,
#lightBoxNav .title,
#cartNav .title,
#popUpnav .title,
#cartFG .box .title,
.slideNameOn,
.pageNav,
.pickerContent .pageOn,
.pickerContent a.pageOn:hover {color:#fff;}
.loupeTool,
#slideKnob,
a:hover .imgBorder,
.imgBorderOn {border-color:#fff;}
#ajaxWorking,
.pickerContent a.page:hover {background-color:#fff;}
.pickerContent a.pageOn:hover {color:#000;}

KiwiLight
Mar-21-2009, 04:37 PM
Thanks a million. The code worked a treat and I am very greatfull. What a fantastic forum.