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.

Is it possible to customize the homepage to have the slideshow on the right and categories or galleries on the left of the slideshow? Here's my site as an example.

share|improve this question

1 Answer

up vote 4 down vote accepted

You'll want to stretch your Homepage, and float the containers for the slideshow and categories left and right. Assuming that you want each to take up 50% of the available screen real estate, you can set the width to 50% on each.

Add this to your Advanced Customizer > CSS section:

#homepage {width: auto; margin-left: 15px; margin-right: 15px;}

#slideshowBox {
width:50% !important;
float:right;
}

#categoriesBox {
width:50% !important;
float:left;
}
share|improve this answer
Thanks, definitely puts me in the direction I want to go! – rfusca Apr 2 '12 at 19:17

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.