PDA

View Full Version : piping under word "portfolio"


ahaas
Dec-06-2006, 07:16 PM
How do I remove the white line (both vertical and horizontal) found just below the word portfolio on my portfolio page?

How do have the text found below the nav bar, appear only on the main page and not on each gallery page?

How do I center my gallery thumbnails, which are shifted left a bit?

Thanks for any help you all can give.

Andy
Dec-06-2006, 07:35 PM
How do I remove the white line (both vertical and horizontal) found just below the word portfolio on my portfolio page?

#galleriesBox .boxBottom {border: none;}


How do have the text found below the nav bar, appear only on the main page and not on each gallery page?
I gave it a DIV ID for you, and so now you can use

#myheadertext {display: none;} in the areas you don't want it :)
[/QUOTE]

Hope this helps!

ahaas
Dec-08-2006, 03:14 PM
Not sure where to put this, tried this in multiple areas with no luck. Help?
#galleriesBox .boxBottom {border: none;}


I gave it a DIV ID for you, and so now you can use

#myheadertext {display: none;} in the areas you don't want it :)

Hope this helps![/quote]

Same with this one: Where do I paste this so it doesn't modify every page? Basicly don't know how to modify gallery pages without going through cutomize I guess....

richW
Dec-08-2006, 07:35 PM
Place both on these lines in your css section (http://www.smugmug.com/homepage/cobrand.mg). This will allow the text on the homepage only.
#myheadertext {display: none;}
.homepage #myheadertext {display: block;}

Put either one in your css section (http://www.smugmug.com/homepage/cobrand.mg).
Removes the borders site wide
#galleriesBox .boxBottom {border: none;}

Removes the borders on homepage only
.homepage #galleriesBox .boxBottom {border: none;}

ahaas
Dec-09-2006, 04:08 PM
Thanks Rich. The removal of borders worked great, although only on the homepage. Also, the header text still appeared on the gallery pages. Do I need to paste the text higher in my css coding, or should it work at the bottom? thanks again for your help!

Place both on these lines in your css section (http://www.smugmug.com/homepage/cobrand.mg). This will allow the text on the homepage only.
#myheadertext {display: none;}
.homepage #myheadertext {display: block;}

Put either one in your css section (http://www.smugmug.com/homepage/cobrand.mg).
Removes the borders site wide
#galleriesBox .boxBottom {border: none;}

Removes the borders on homepage only
.homepage #galleriesBox .boxBottom {border: none;}

Andy
Dec-09-2006, 04:54 PM
I think Support Hero and Customization Specialist Barb will be along shortly with a fix :D

Barb
Dec-09-2006, 05:05 PM
Thanks Rich. The removal of borders worked great, although only on the homepage. Also, the header text still appeared on the gallery pages. Do I need to paste the text higher in my css coding, or should it work at the bottom? thanks again for your help!

Hi :)

You had the right code, but you forgot to comment out your description of what the code does. I changed the code to be as follows. Notice the /* and */ around the descriptions.

/*removes piping on site*/
#galleriesBox .boxBottom {border: none;}

/*display text on homepage only*/
#myheadertext {display: none;}
.homepage #myheadertext {display: block;}

See if it looks okay for you now.

ahaas
Dec-12-2006, 04:22 PM
Wow! You guys are awesome. I didn't know you could modify my code. How easy was that. Thank you so much......enough customizing for now, time to enjoy a bit....

Hi :)

You had the right code, but you forgot to comment out your description of what the code does. I changed the code to be as follows. Notice the /* and */ around the descriptions.

/*removes piping on site*/
#galleriesBox .boxBottom {border: none;}

/*display text on homepage only*/
#myheadertext {display: none;}
.homepage #myheadertext {display: block;}

See if it looks okay for you now.

Andy
Dec-12-2006, 04:37 PM
Wow! You guys are awesome. I didn't know you could modify my code. How easy was that. Thank you so much......enough customizing for now, time to enjoy a bit....Barb and Ivar are customization specialists on our Support Heroes Team :D

:wave