Recent Video
Categories
- HTML Codes - Table of ascii characters and symbols
- Date Variable Formatting โ ExpressionEngine Documentation
- Assign Global Variables โ ExpressionEngine Documentation
- Category Archives with Custom Fields | Wiki | ExpressionEngine
- Session Class โ ExpressionEngine Developer Documentation
- Per Site Config | Wiki | ExpressionEngine
- Support Resources | ExpressionEngine
- Solspace: ExpressionEngine Software Documentation: Tracker
- How can I use HTML to format my RSS feed? | Knowledge Base | ExpressionEngine
- Individurls: Design Your Own Popurls
- socialized ยป A brief tutorial on Twitter hashtags and Twemes
- Visiting my site results in a blank page. | Knowledge Base | ExpressionEngine
Twitter Updates
Welcome to EEHowTo, a repository of how to articles for ExpressionEngine.
HowTo Modify Your Full Size Calendar To Display Correctly
Posted on 2006-03-19
Question: I’m creating a full sized calendar using the code from the user guide. When there are a events to display, the calendar cells are out of whack. How can I fix this?
Answer: The calendar CSS doesn’t take into account the width and height of your calendar cell. You’ll need to add two lines to your CSS
.calendarCell {
font-family: Arial, Trebuchet MS, Tahoma, Verdana,
Sans-serif;
font-size: 12px;
font-weight: bold;
letter-spacing: .1em;
text-decoration: none;
text-align: center;
vertical-align: middle;
color: #666;
background-color: #fff;
width: 57px;
height: 57px;
}
In this case, I used 57px as the width and height. Your calendar width and height will vary depending on your design.
| Before
|
After
|
Back to top of page.
Page 1 of 1 pages :


