
October 3rd, 2003, 03:17 PM
|
|
Contributing User
|
|
Join Date: Apr 2002
Location: la
Posts: 56
Time spent in forums: 41 m 9 sec
Reputation Power: 7
|
|
|
relative bg url -- css
im wondering why
Code:
<base href="http://myhost.com" />
//further down
//inside css:
background-image: url("images/bg_tex.gif");
does not work, yet
Code:
<base href="http://myhost.com" />
//further down
//inside css:
background-image: url("http://myhost.comimages/bg_tex.gif");
does work....
-the reason I ask is because part of this site has ssl transactions and everypage that has the absolute url for this bg in it, pops up the 'some items are non-secure.. blah blah blah" dialog..
which means every click in the secure portion has this alert box!
thoroughly annoying...
any insight is appreciated - as always

|