Hi,

I work for a voluntary agency and we can't for the life of us fix this simple problem, i.e. get the panels on the homepage to run horizontally rather than vertically - see, www.theclubhouse.ie

I have already posted about this under a different title - 'help with views panels' - that post is below.

Thanks in advance for any help.

Ciaran

Hi,

I want to have three views panels in the main content area on the homepage of my voluntary organisations website - www.theclubhouse.ie - I need the 'Kudos for Kid's' boxes to float across the page horizontally in a single row.

Anyone any suggestions please?

Thanks

Comments

Jeff Burnz’s picture

You should be able to float them left and add a margin-right for a gutter.

prajaktam’s picture

#main {
float: left;
width: 715px;
}

Jeff Burnz’s picture

I think you mean...

#main .block-views {
  float: left; 
  width: 210px; 
  margin-right: 10px;
}
cmcguinness’s picture

Perfect and thank you very much!

C.