W
_Who
I use the code below to change to a style sheet that has:
body
{
....
background-image:url(../images/background brown.gif);
}
Rather than:
body
{
....
background-color:black;
}
Dim HtmlLinkObj As HtmlLink = New HtmlLink()
HtmlLinkObj.Attributes.Add("href", "StyleSheets/Textured.css")
HtmlLinkObj.Attributes.Add("rel", "stylesheet")
HtmlLinkObj.Attributes.Add("type", "text/css")
HeadMaster.Controls.Add(HtmlLinkObj)
Works OK on IE but has no effect in FireFox nor Safari
On the .master there is:
<head id="HeadMaster"...
I once saw where some one added to the body tag in addition to the head (I
think).
Been looking but can't find it now that I'd like to try it.
Do you know how to do that?
Have any other ideas how to make it work in FireFox and Safari
Thanks
body
{
....
background-image:url(../images/background brown.gif);
}
Rather than:
body
{
....
background-color:black;
}
Dim HtmlLinkObj As HtmlLink = New HtmlLink()
HtmlLinkObj.Attributes.Add("href", "StyleSheets/Textured.css")
HtmlLinkObj.Attributes.Add("rel", "stylesheet")
HtmlLinkObj.Attributes.Add("type", "text/css")
HeadMaster.Controls.Add(HtmlLinkObj)
Works OK on IE but has no effect in FireFox nor Safari
On the .master there is:
<head id="HeadMaster"...
I once saw where some one added to the body tag in addition to the head (I
think).
Been looking but can't find it now that I'd like to try it.
Do you know how to do that?
Have any other ideas how to make it work in FireFox and Safari
Thanks