WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You

WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You


You are not connected. Please login or register

View previous topic View next topic Go down  Message [Page 1 of 1]

1Sliding horizontal Empty Sliding horizontal Tue Feb 22, 2011 10:39 pm

Matti

Matti
Registered Member
Registered Member
Hello, guys

I found a Sliding horizontal menu at w3schools.com I fix it the way I wanna it but it doesn't show any thing so how to make this work on the forum.

Example of the code:
Code:
<html>
<head>
<style>
body{font-family:arial;}
a{color:black;text-decoration:none;font:bold}
a:hover{color:#606060}
td.menu{background:lightblue}

table.nav
{
background:black;
position:relative;
font: bold 80% arial;
top:0px;
left:-135px;
}
</style>
<script type="text/javascript">
var i=-135;
var intHide;
var speed=4;
function showmenu()
{
clearInterval(intHide);
intShow=setInterval("show()",10);
}
function hidemenu()
{
clearInterval(intShow);
intHide=setInterval("hide()",10);
}
function show()
{
if (i<-12)
   {
   i=i+speed;
   document.getElementById('myMenu').style.left=i;
   }
}
function hide()
{
if (i>-135)
   {
   i=i-speed;
   document.getElementById('myMenu').style.left=i;
   }
}
</script>
</head>

<body>
<table id="myMenu" class="nav" width="159" onmouseover="showmenu()" onmouseout="hidemenu()">
<tr><td class="menu"><a href="http://forumdesigners.forumotion.com/">Forum Rules</a></td>
<td rowspan="5" align="center" bgcolor="#FF8080">M<br />E<br />N<br />U</td></tr>
<tr><td class="menu"><a href="http://forumdesigners.forumotion.com/">Forum 2</a></td></tr>
<tr><td class="menu"><a href="http://forumdesigners.forumotion.com/">Forum 3</a></td></tr>
<tr><td class="menu"><a href="http://forumdesigners.forumotion.com/">Forum 4</a></td></tr>
<tr><td class="menu"><a href="http://forumdesigners.forumotion.com/">Forum 5</a></td></tr>
</table>
</body>
</html>

http://csshelp.forumotion.net/

2Sliding horizontal Empty Re: Sliding horizontal Wed Feb 23, 2011 3:41 pm

Matti

Matti
Registered Member
Registered Member
Any one can help me with this cuz I really need it. this will save me a lot of work.

http://csshelp.forumotion.net/

3Sliding horizontal Empty Re: Sliding horizontal Wed Feb 23, 2011 6:29 pm

Unknown Data

Unknown Data
Registered Member
Registered Member
How and were are you placing the codes?

http://woops.dk

4Sliding horizontal Empty Re: Sliding horizontal Wed Feb 23, 2011 7:15 pm

Matti

Matti
Registered Member
Registered Member
Thanks for replying UD, and I hope you can help me with this cuz I really really need this.


This code I got it from here w3schools.com And I have create a HTML page but nothing shows, so if you want me to make a example of a screen shot to show you where I want this code to be then I'll do it if you need it.

Code:
<html>
<head>
<style>
body{font-family:arial;}
a{color:black;text-decoration:none;font:bold}
a:hover{color:#606060}
td.menu{background:lightblue}

table.nav
{
background:black;
position:relative;
font: bold 80% arial;
top:0px;
left:-135px;
}
</style>
<script type="text/javascript">
var i=-135;
var intHide;
var speed=4;
function showmenu()
{
clearInterval(intHide);
intShow=setInterval("show()",10);
}
function hidemenu()
{
clearInterval(intShow);
intHide=setInterval("hide()",10);
}
function show()
{
if (i<-12)
   {
   i=i+speed;
   document.getElementById('myMenu').style.left=i;
   }
}
function hide()
{
if (i>-135)
   {
   i=i-speed;
   document.getElementById('myMenu').style.left=i;
   }
}
</script>
</head>

<body>
<table id="myMenu" class="nav" width="159" onmouseover="showmenu()" onmouseout="hidemenu()">
<tr><td class="menu"><a href="http://forumdesigners.forumotion.com/">Forum Rules</a></td>
<td rowspan="5" align="center" bgcolor="#FF8080">M<br />E<br />N<br />U</td></tr>
<tr><td class="menu"><a href="http://forumdesigners.forumotion.com/">About Us</a></td></tr>
<tr><td class="menu"><a href="http://forumdesigners.forumotion.com/">Affiliates</a></td></tr>
<tr><td class="menu"><a href="http://forumdesigners.forumotion.com/">Themes/Skins</a></td></tr>
<tr><td class="menu"><a href="http://forumdesigners.forumotion.com/">Forum 5</a></td></tr>
</table>
</body>
</html>

http://csshelp.forumotion.net/

5Sliding horizontal Empty Re: Sliding horizontal Thu Feb 24, 2011 1:09 am

RecAgenda

RecAgenda
NewsReporter
NewsReporter
Let's see the screenshot first and we'll go from there. Wink

http://www.recagenda.wordpress.com

6Sliding horizontal Empty Re: Sliding horizontal Thu Feb 24, 2011 1:41 am

Matti

Matti
Registered Member
Registered Member
Sure here is how I want that to be.

Sliding horizontal Thisaw10

http://csshelp.forumotion.net/

7Sliding horizontal Empty Re: Sliding horizontal Thu Feb 24, 2011 1:43 am

Unknown Data

Unknown Data
Registered Member
Registered Member
Okay, I'll take a look at it as soon I get to my laptop, using iPod now. Wink

http://woops.dk

8Sliding horizontal Empty Re: Sliding horizontal Thu Feb 24, 2011 1:59 am

Guest


Guest
I can't see any problem with it (:
i tested it in a HTML page and it worked (:

9Sliding horizontal Empty Re: Sliding horizontal Thu Feb 24, 2011 2:07 am

Matti

Matti
Registered Member
Registered Member
Gangstar15, how I tried to my forum many times but didn't work.

http://csshelp.forumotion.net/

10Sliding horizontal Empty Re: Sliding horizontal Thu Feb 24, 2011 2:15 am

Guest


Guest
Weird, :/ it wont work try host the javascript in a HTML page and link it (:

11Sliding horizontal Empty Re: Sliding horizontal Fri Feb 25, 2011 2:24 am

Unknown Data

Unknown Data
Registered Member
Registered Member
There isn't any problems with the code itself, but I think it's getting messed up, when being connected with the forumotions scriptlibrary.

http://woops.dk

12Sliding horizontal Empty Re: Sliding horizontal Fri Feb 25, 2011 3:54 am

Guest


Guest
Jeps Very Happy because i tried another one and the same thing (:

13Sliding horizontal Empty Re: Sliding horizontal Fri Feb 25, 2011 5:04 am

RockerMan

RockerMan
Technician
Technician
Welcome to the world of forumotion...

Terrible customization!

http://www.graphics-post.com/

14Sliding horizontal Empty Re: Sliding horizontal Fri Feb 25, 2011 2:43 pm

Emilio

Emilio
Registered Member
Registered Member
Well there are other ways to do it.

http://www.graphilicious.forumotion.Com

15Sliding horizontal Empty Re: Sliding horizontal Fri Feb 25, 2011 4:58 pm

Matti

Matti
Registered Member
Registered Member
Emilio, If you know how please help cuz I really need this.

http://csshelp.forumotion.net/

16Sliding horizontal Empty Re: Sliding horizontal Tue Mar 01, 2011 9:37 pm

Matti

Matti
Registered Member
Registered Member
So, you guys saying that this can't be done on Forumotion!

http://csshelp.forumotion.net/

Sponsored content


View previous topic View next topic Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum