Scheduler css

Hi,

I have a scheduler embedded inside a page, but all css specified for the page are cascaded inside scheduler thereby messing up overall look for the page.

Can this be fixed?

I’m using twittter bootstrap theme for the page and css definitions are like below:

[code]

Index

<link rel="stylesheet" href="/Scripts/dhtmlxScheduler/dhtmlxscheduler_glossy.css" type="text/css" charset="utf-8">
[/code]

Regards,
Karthik

Hi,
I don’t think there is an easy way to fix it. You’ll need to find conflict css rules(that are applied to the tags, regardless of classes), and disable them for the scheduler container.
e.g. bootstrap.css may have something like:
table td{ padding:5px; }
override it with the default value inside the scheduler container:
#scheduler_here table td{ padding:0; }

Hi,

Thanks for the update.

I fixed that by using an iframe.

Regards,
Karthik

Hello,

You said you resolved it by using an iframe, could you tell me how, because I am having the same problem.

Thanks!