I am using DT register 2.712d and on the calendar display the days of the week are partially hidden by the rest of the calendar (month view).
made some changes to calendar.css (to correct the month name doing the same thing), but can't get the 'days of the week' names to look right.
link to the page is
http://chinaresourcenetwork.com/newjoom ... -of-events
.
can anyone tell me what part of calendar.css needs to be changed.
was working in the .wk-dayname but nothing i've done seems to helpo
This is actually because of your Joomla template... on your site, it's coming from the file joomla.css. It's padding being added to all "th" tags. You can either modify your template CSS, or modify the calendar.css of DT Register:
.mv-container th {
font-size: 12px;
padding: 0;
}
The padding seen here is added... not there by default. We're actually adding this to the package so it will be a default as we're seeing various templates causing this same problem. Thanks.