Side bar extension

laurendecicca / 2014-04-18 07:17:26   

Hello,

Wondering if I can extend the sidebar index on my website so that each project fills only one line.

laurendeciccaphotography.com

For example. Under "projects" the gallery "Burma: A dream surely vanishing" extends to the next line. I'd like it to only take up one.

Can this be done?

bipster / 2014-04-18 07:48:38   

Edit your style.css file and change width:215px; to width:250px; in both #index and #exhibit:

  1. #index {
  2.     background: none repeat scroll 0 0 #FFFFFF;
  3.     width: 250px;
  4. }
  5. #exhibit {
  6.     margin: 0 0 0 250px;
  7. }
bipster / 2014-04-18 07:49:46   

Sorry, in #exhibit you have to change the value of the margin, not the width, to 250px.

laurendecicca / 2014-04-19 03:39:48   

perfect! Thanks!

This thread has been closed, thank you.