I get problem with the calendar bloc and I don't know how to resolve it.
When I want to move this bloc in the left sidebar it doesn't look well !

I think it's a CSS problem but I don't know how can I do to make look well in the left sidebar like it does in the right sidebar.

If anyone can help me for fix this css error, you are welcome.

thanks.

CommentFileSizeAuthor
burnt_trouble.gif6.89 KBPeyJ

Comments

dreed47’s picture

Status: Active » Fixed

fix commited to CVS for both 4.6 and 4.7 versions.

If you want to apply manullay you can replace the
/////OLD

.calendar a  {
	text-decoration: none;
}

/////NEW

#sidebar-left .calendar a, .calendar a  {
	text-decoration: none;
	display: inline;
	margin: 0px 0px 0px 0px;
	padding: 0px;
	width: inherit;
	border: none;
	text-transform: none;
}

in the style.css file.

Anonymous’s picture

Status: Fixed » Closed (fixed)