Tell me more ×
SmugMug Stack Exchange is a question and answer site for SmugMug developers and end users. It's 100% free, no registration required.

Hey everyone so here is my question I have been able to figure out what CSS code to use for the mini boxes to make them 3 across but what I am trying to figure out now is how to make it only effect a certain category on my website. I am trying to make it only effect my "Fine Art" category. I know it has to do with my gallery description and I've tried a few things none of them worked. This is the code I was able to figure out which will effect my whole website, but I have not yet applied it:

.boxBottom .albumLarge { width: 175px; height: 350px; text-align: center; margin: 0 18px; }

My website is www.k-ophotography.com, thank you in advance!

share|improve this question

1 Answer

up vote 2 down vote accepted

please add this to your CSS:

.category_Fine_Art .boxBottom .albumLarge { width: 175px; height: 350px; text-align: center; margin: 0 18px; }

share|improve this answer
Thanks Andy that did the trick looks great! One thing and if you like I can post this in digital grin or make a new question here but after doing that I lost my text is it because this CSS is canceling out the CSS for my text I have? – Keith Mar 30 '12 at 19:13
Hi Keith, do post that on Dgrin, thanks. – Andy Williams Mar 30 '12 at 19:20

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.