thanks for the help guys but still can't get it to work.
I have a login page that sets the variable UserIsMember with the code
'<script language="JavaScript">
<!-- var UserIsMember = "True"-->
</script>
On my index page i have the following code:
<!-- Menu START -->
<script language="JavaScript">
<!--
var Membership=(UserIsMember);
if (Membership=="IsMember")
{
document.write('<link rel="stylesheet" type="text/css" href="/Scripts/member.css">/Members Menu />');
}
else
{
document.write('<link rel="stylesheet" type="text/css" href="/Scripts/notmember.css">Non Members Menu />');
}
-->
</script>
<!-- Menu END -->
Here is the member.css file code:
@charset "utf-8";
/* CSS Document */
h1.notMember{
display:none
}
h1.isMember{
display:block
Menu <br /> <hr>
<a href="/index.html" class="style3">Home Page</a><br />
<a href="/awards.html" class="style3">Awards</a><br />
<a href="/bank.html" class="style3">Bank</a><br />
<a href="/calendar.html" class="style3">Calendar</a><br />
<a href="/characters.html" class="style3">Characters</a><br />
<a href="/events.html" class="style3">Events</a><br />
<a href="/feedback.html" class="style3">Feedback.</a><br />
<a href="/gallery.html" class="style3">Gallery</a><br />
<a href="/groups.html" class="style3">Groups</a><br />
<a href="/polls.html" class="style3">Polls</a><br />
<a href="/raids.html" class="style3">Raids</a><br />
<a href="/ranks.html" class="style3">Ranks</a><br />
<a href="/shouts.html" class="style3">Shouts</a><br />
<br />
}
and here is the notmember.css file code
@charset "utf-8";
/* CSS Document */
h1.notMember{
display:block
Menu <br /><hr>
<a href="/index.html" class="style3">Home Page</a><br />
<a href="/who-we-r.html" class="style3">Who we are and what we are about.</a><br />
<a href="/history.html" class="style3">History of our Kinship.</a><br />
<a href="/philosophy.html" class="style3">Philosophy of our Kinship.</a><br />
<a href="/public_html/rules.html" class="style3">Rules of our Kinship.</a><br />
<a href="/application.html" class="style3">Application to join to theKinship.</a><br />
<a href="/feedback.html" class="style3">Feedback or Comments.</a><br />
<br />
}
h1.isMember{
display:none
}
The problem is that neither of the two menus are being displayed.
Any further help would be gratefully received
Michael
}
I have a login page that sets the variable UserIsMember with the code
'<script language="JavaScript">
<!-- var UserIsMember = "True"-->
</script>
On my index page i have the following code:
<!-- Menu START -->
<script language="JavaScript">
<!--
var Membership=(UserIsMember);
if (Membership=="IsMember")
{
document.write('<link rel="stylesheet" type="text/css" href="/Scripts/member.css">/Members Menu />');
}
else
{
document.write('<link rel="stylesheet" type="text/css" href="/Scripts/notmember.css">Non Members Menu />');
}
-->
</script>
<!-- Menu END -->
Here is the member.css file code:
@charset "utf-8";
/* CSS Document */
h1.notMember{
display:none
}
h1.isMember{
display:block
Menu <br /> <hr>
<a href="/index.html" class="style3">Home Page</a><br />
<a href="/awards.html" class="style3">Awards</a><br />
<a href="/bank.html" class="style3">Bank</a><br />
<a href="/calendar.html" class="style3">Calendar</a><br />
<a href="/characters.html" class="style3">Characters</a><br />
<a href="/events.html" class="style3">Events</a><br />
<a href="/feedback.html" class="style3">Feedback.</a><br />
<a href="/gallery.html" class="style3">Gallery</a><br />
<a href="/groups.html" class="style3">Groups</a><br />
<a href="/polls.html" class="style3">Polls</a><br />
<a href="/raids.html" class="style3">Raids</a><br />
<a href="/ranks.html" class="style3">Ranks</a><br />
<a href="/shouts.html" class="style3">Shouts</a><br />
<br />
}
and here is the notmember.css file code
@charset "utf-8";
/* CSS Document */
h1.notMember{
display:block
Menu <br /><hr>
<a href="/index.html" class="style3">Home Page</a><br />
<a href="/who-we-r.html" class="style3">Who we are and what we are about.</a><br />
<a href="/history.html" class="style3">History of our Kinship.</a><br />
<a href="/philosophy.html" class="style3">Philosophy of our Kinship.</a><br />
<a href="/public_html/rules.html" class="style3">Rules of our Kinship.</a><br />
<a href="/application.html" class="style3">Application to join to theKinship.</a><br />
<a href="/feedback.html" class="style3">Feedback or Comments.</a><br />
<br />
}
h1.isMember{
display:none
}
The problem is that neither of the two menus are being displayed.
Any further help would be gratefully received
Michael
}