Author |
Topic  |
|
borge
Junior Member
 
Norway
185 Posts |
Posted - 18 July 2003 : 20:11:24
|
I just installed the latest version of the Site Integration MOD, it is great, thanks for your hard work!
I do have a question about CSS. I have read the other topics on this, but did not figure this out from those. - At the top of the inc_site_header.asp I included a link to my CSS file:
<META content=eng name=language><LINK href="http://www.mydomain.com/style.css" type="text/css" rel="stylesheet">
This works just fine with my IE-6.0, but people with older browsers like Netscape 4.x only get the background color, nothing more. Is there some other way of doing this more successful to avoid those kind of problems? |
borge |
|
borge
Junior Member
 
Norway
185 Posts |
Posted - 19 July 2003 : 04:19:21
|
Actually it seams that it was not the CSS that caused the problem, as it woks on old browsers when I turn off the Site Integration functions, but it does not work even if I remove the CSS link. Probably this MOD does not work with some of those really old browsers.  |
borge |
 |
|
D3mon
Senior Member
   
United Kingdom
1685 Posts |
Posted - 19 July 2003 : 05:19:48
|
To add your CSS, you'll need to put it into inc_header.asp with the other CSS statements for Snitz. Links to external CSS files must be made before the BODY tag of the page. |
 Snitz 'Speedball' : Site Integration Mod : Friendly Registration Mod "In war, the victorious strategist only seeks battle after the victory has been won" |
 |
|
D3mon
Senior Member
   
United Kingdom
1685 Posts |
|
borge
Junior Member
 
Norway
185 Posts |
Posted - 19 July 2003 : 05:34:42
|
Thanks D3mon, I'll try that  |
 |
|
borge
Junior Member
 
Norway
185 Posts |
Posted - 19 July 2003 : 05:42:03
|
Just another question:
This is the code at lines 161-165 in inc_header.asp:
"}" & vbNewLine & _ "// done hiding -->" & vbNewLine & _ "</script>" & vbNewLine & _ "<style type=""text/css"">" & vbNewLine & _ "<!--" & vbNewLine & _
How do I include my CSS information to get it work (see my first post), do I need to copy the text.css to the forum folder or can I link to it? |
 |
|
D3mon
Senior Member
   
United Kingdom
1685 Posts |
Posted - 19 July 2003 : 06:19:20
|
pop it in before the Snitz CSS like:
"</script>" & vbNewLine & _
"<link href=""http://www.mydomain.com/style.css"" type=""text/css"" rel=""stylesheet"">" & _
"<style type=""text/css"">" & vbNewLine & _
Ignore the earlier CSS lines and make sure you put it in the second bunch of CSS in inc_header.asp, further down the page (around line #263). |
 Snitz 'Speedball' : Site Integration Mod : Friendly Registration Mod "In war, the victorious strategist only seeks battle after the victory has been won" |
Edited by - D3mon on 19 July 2003 06:24:20 |
 |
|
|
Topic  |
|