Hay there,
I have a master page that is implementing a css and everything is working fine. One of my pages uses the the javascript popup calendar and its style sheet.
these are the links the page has :
<LINK href="cal/popcalendar.css" type="text/css" rel="stylesheet">
<script language="javascript" src="cal/popcalendar.js"/>
And the page is working fine on it own.
When i added the master page to this page I was not able to find a way to put these lines on the page (within the content tags) so i decided that they belong to the master page... i added the lines as follows it as follows:
<style type="text/css" media="all">
@import "cal/popcalendar.css";
@import "DesignerCSS/style.css";
</style>
<script language="javascript" src="cal/popcalendar.js" />
When I put it in the master page, i noticed that the javascript line disables most of the styles from the other sheet, when i just remove the javascript line both styles are implemented successfully but the popcalendar of course doesn't work...
Any idea how to work around this ???