PDA

View Full Version : Style overwitten


mcgrelio
03-06-2003, 01:44 PM
Hi, good work!
I only have a question.
I've included the ESCalendar in a php. page with a .css style sheet file attached.
This .css ovewrite my ESCalendar style settings!
There're any chance to make the ESC settings visible without deleting the .css file relation?

If not, is it possible to solve the problem adding to my .css style sheet file the ESC style classes?

Thx, Cya ;)

Brian
06-28-2003, 10:37 AM
Do either of the sytle-sheet sets use the same style name? Can you post or PM me the two style-sets?

t.hanson
12-12-2003, 01:40 PM
Got it thanks! =)

Brian
12-12-2003, 01:53 PM
You have two entries in your style sheets that set the text color to white (#FFFFFF). They are:

body {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #FFFFFF;
}

td {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #FFFFFF;
}


My guess is that the td style is overriding the calendar style?

t.hanson
12-12-2003, 02:32 PM
Ah thanks, I'll check it out. I'm still new to this =)