PDA

View Full Version : Can not figure this out for the life of me!


Ryan Armbrust
Aug-26-2008, 08:37 AM
I am in the process of re doing my website, http://www.sniperphotography.com. Going for a more sleek look to it. I have gotten my page to do everything I wanted with the exception of 3 things.

1.) I can not figure out how to center the slideshow on the main page, the large size that I currently have displayed. I can center the smaller slideshow no problem, but really want to display this larger one.

2.) How do I remove the gradient from my bio box? I do want to keep it everywhere else on the page.

3.) How do I change the color of "Gallery Comments" on this page? http://www.sniperphotography.com/gallery/1498277

As always, thanks in advance for everyones help.

Barb
Aug-26-2008, 08:44 AM
I am in the process of re doing my website, http://www.sniperphotography.com. Going for a more sleek look to it. I have gotten my page to do everything I wanted with the exception of 3 things.

1.) I can not figure out how to center the slideshow on the main page, the large size that I currently have displayed. I can center the smaller slideshow no problem, but really want to display this larger one.

2.) How do I remove the gradient from my bio box? I do want to keep it everywhere else on the page.

3.) How do I change the color of "Gallery Comments" on this page? http://www.sniperphotography.com/gallery/1498277

As always, thanks in advance for everyones help.

Hi Ryan,

For your homepage, because your slideshow is larger than the native biobox, add the following to your CSS:

#homepage {
margin-left: 15px;
margin-right: 15px;
min-width: 755px;
width: auto;
_width: expression(document.documentElement.clientWidth < 790? "760px" : "auto");
}

To remove the background, add this to your CSS:

#bioBox .boxBottom {background: none !important;}

Not sure if you want to just change the color of the comments themselves, but start by adding this to your CSS:

#comments .foreground {color: red !important;}

Of course, choose your color.

Ryan Armbrust
Aug-26-2008, 09:12 AM
Hi Ryan,

For your homepage, because your slideshow is larger than the native biobox, add the following to your CSS:

#homepage {
margin-left: 15px;
margin-right: 15px;
min-width: 755px;
width: auto;
_width: expression(document.documentElement.clientWidth < 790? "760px" : "auto");
}

To remove the background, add this to your CSS:

#bioBox .boxBottom {background: none !important;}

Not sure if you want to just change the color of the comments themselves, but start by adding this to your CSS:

#comments .foreground {color: red !important;}

Of course, choose your color.


Barb,

You are AWESOME! That bit of code just saved the little hair I still have left on my head!

As far as the gallery comment page, I am trying to change the Smuggy green of the word "Gallery Comments" on that page to a dark grey, or just do away with it all together. I also have the Smuggy green appearing on the cart button as well.

Again, big thanks Barb!

Barb
Aug-26-2008, 09:17 AM
Barb,

You are AWESOME! That bit of code just saved the little hair I still have left on my head!

As far as the gallery comment page, I am trying to change the Smuggy green of the word "Gallery Comments" on that page to a dark grey, or just do away with it all together. I also have the Smuggy green appearing on the cart button as well.

Again, big thanks Barb!

Hi,

Try this in your CSS:

#comment .title {color: #595a5a !important;}

.cartbuttons .title {color: #595a5a !important;}