Hi :)

I'm sorry, I tried to search for this to see if you've already answered, but couldn't find it.

I'm trying to set up this theme on my site. In the preface first region, I have a video and in preface last I have the recent blog posts block. However, since they are each set to 50% when there are two columns in use, the video overlaps the block. Is there a way I can change the widths so that Preface First takes up 66% and Preface Last takes up 32%?

I did try modifying these lines in local.css from

#preface-wrapper.in2 .column {
width: 50%;
}

to

#preface-wrapper.in2 .column {
width: auto;
}

But all that happened then was the Recent posts block in Preface Last got moved to below the video.

Eventually I'm going to be placing a custom block in Preface last, but the dimensions will need to be the same, so if you could please show me how to set this up I would appreciate it very much :)

Comments

Deepika.chavan’s picture

Hi,
It gets easy to solve the problem if you can actually view it. But according to your requirement i.e. "Preface First takes up 66% and Preface Last takes up 32%" please try following css.

#preface-wrapper .A {
  width: 66%;
} 

#preface-wrapper .C {
  width: 32%;
}

Hope this helps!

Rgrds,

Deepika Chavan.

Fanaile’s picture

Status: Active » Closed (fixed)

That worked brilliantly... and I feel adequately stupid for not seeing that, LOL

Thank you so much!