Hi, apologies if this has been asked and answered before. I have some experience of HTML and CSS and have tried differant layouts but keep coming back to this one, its stylish and the colours are spot on. Anyway, my questions are
( Read more... )
I don't know about he Beckett Style Sheet, but the other two I think I can help.
if you're using a 3 column layout, then you have Alpha, Beta and Gamma columns. Beta is the middle, and you'll want to set that width to whatever percentage in order to get the width you want, with Alpha and Gamma having smaller percentages. For example,
Just remember with percentages that the three columns must add up to 100%. You can also use specific widths in pixels, however if someone uses a different screen rez than you do, or does not work with their windows maximized they may end up with scroll bars.
To get rid of the calendar is simple.
.module-calendar{ display:none !important; }
This can be used for any module that you do not want to display. Hope that's helpful.
No CSS displays in the editing options; the style sheet shows blank. Do I just start dropping CSS into it and hope it applies correctly? (Sorry - I am new to CSS).
I am having the same issue with the journal displaying very narrowly, even in a single column layout . . .
Comments 4
if you're using a 3 column layout, then you have Alpha, Beta and Gamma columns. Beta is the middle, and you'll want to set that width to whatever percentage in order to get the width you want, with Alpha and Gamma having smaller percentages. For example,
#alpha{
width: 20%;
}
#beta{
width: 60%;
}
#gamma{
width: 20%;
}
Just remember with percentages that the three columns must add up to 100%. You can also use specific widths in pixels, however if someone uses a different screen rez than you do, or does not work with their windows maximized they may end up with scroll bars.
To get rid of the calendar is simple.
.module-calendar{
display:none !important;
}
This can be used for any module that you do not want to display. Hope that's helpful.
Reply
Reply
I am having the same issue with the journal displaying very narrowly, even in a single column layout . . .
Reply
Reply
Leave a comment