Question about width and removing the calender

Dec 14, 2010 17:57

 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... )

Leave a comment

Comments 4

ishte December 15 2010, 00:04:46 UTC
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,

#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


av8rmike December 15 2010, 21:55:23 UTC
What do you mean by "get into the CSS" for the style sheet?

Reply

llythefaerye April 3 2015, 03:34:01 UTC
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 . . .

Reply


anonymous February 15 2011, 00:11:20 UTC
What a nice post. I really love reading these types or articles. I can?t wait to see what others have to say.

Reply


Leave a comment

Up