Text..

Cyber-boy

New Member
I instal vb one day ago..And now when i try to enter this text in new thread it doesnt shows nothink..
Code:
<! - CSS Mac Dock -> 
<script type="text/javascript" src="clientscript/jquery.js"> </ script> 
<script type="text/javascript" src="clientscript/interface.js"> </ script> 

<!--[ if lt IE 7]> 
  <style type="text/css"> 
  div, img (behavior: url (images / dock / iepngfix.htc)) 
  </ style> 
<! [endif] -> 

<link href="images/dock/style.css" rel="stylesheet" type="text/css" /> 
</ head> 
<body> 
<div class="dock" id="dock"> 
   <div class="dock-container"> 
   <a class="dock-item" href="$vboptions[bburl]$session[sessionurl_q]"> <img src="images/dock/Network Service.PNG" alt="home" /> <span> Home < / span> </ a> 
   <a class="dock-item" href="http://ultimatepowermax.info/forumdisplay.php?f=25"> <img src="images/dock/LaST (Announcement).PNG" alt="Free Talk" /> <span> Free Talk </ span> </ a> 
   <a class="dock-item" href="http://ultimatepowermax.info/forumdisplay.php?f=26"> <img src="images/dock/AlienAqua FTP.PNG" alt="Hack Zone" /> <span> Hack Zone </ span> </ a> 
   <a class="dock-item" href="http://ultimatepowermax.info/forumdisplay.php?f=27"> <img src="images/dock/LaST (Cobalt) Applications.PNG" alt="Designers Heaven" /> <span> Designers Heaven </ span> </ a> 
   <a class="dock-item" href="radioandtv.php$session[sessionurl_q]"> <img src="images/dock/dbPoweramp copy.PNG" alt="RAdio" /> <span> Radio </ span> </ a> 
</ div> 
</ div> 
<script type="text/javascript"> 

$ (Document). Ready ( 
Function () 
( 
$ ( '# Dock'). Fisheye ( 
( 
Maxwidth: 50, 
Items: 'a', 
ItemsText: 'span', 
Container: '. Dock-container', 
ItemWidth: 40 
Proximity: 90, 
Halign: 'center' 
) 
) 
) 
); 

</ script> 
<br /> <br /> <br /> <br /> 
<! - CSS Mac Dock ->
Any way to fix it..
btw when i put this in navbar it also doesnt shows anythink!
 
To begin with, ALMOST ALL your closing tags are broken with a space between the slash and the tag, the page is incorrectly formatted and missing tags as well, javascript calls are in the wrong place but other than that everything is fine... can you say rework the code?
 
This part goes in headinclude template:

HTML:
<! - CSS Mac Dock -> 
<script type="text/javascript" src="clientscript/jquery.js"> </script> 
<script type="text/javascript" src="clientscript/interface.js"> </script> 

<!--[ if lt IE 7]> 
  <style type="text/css"> 
  div, img (behavior: url (images / dock / iepngfix.htc)) 
  </style> 
<! [endif] -> 

<link href="images/dock/style.css" rel="stylesheet" type="text/css" >

This part goes in the bottom of the header template or maybe the navbar template.

HTML:
<div class="dock" id="dock"> 
   <div class="dock-container"> 
   <a class="dock-item" href="$vboptions[bburl]$session[sessionurl_q]"> <img src="images/dock/Network Service.PNG" alt="home" /> <span> Home </span> </a> 
   <a class="dock-item" href="http://ultimatepowermax.info/forumdisplay.php?f=25"> <img src="images/dock/LaST (Announcement).PNG" alt="Free Talk" /> <span> Free Talk </span> </a> 
   <a class="dock-item" href="http://ultimatepowermax.info/forumdisplay.php?f=26"> <img src="images/dock/AlienAqua FTP.PNG" alt="Hack Zone" > <span> Hack Zone </span> </a> 
   <a class="dock-item" href="http://ultimatepowermax.info/forumdisplay.php?f=27"> <img src="images/dock/LaST (Cobalt) Applications.PNG" alt="Designers Heaven" /> <span> Designers Heaven </span> </a> 
   <a class="dock-item" href="radioandtv.php$session[sessionurl_q]"> <img src="images/dock/dbPoweramp copy.PNG" alt="RAdio" /> <span> Radio </span> </a> 
</div> 
</div> 
<script type="text/javascript"> 

$ (Document). Ready ( 
Function () 
( 
$ ( '# Dock'). Fisheye ( 
( 
Maxwidth: 50, 
Items: 'a', 
ItemsText: 'span', 
Container: '. Dock-container', 
ItemWidth: 40 
Proximity: 90, 
Halign: 'center' 
) 
) 
) 
); 

</script> 
<br /> <br /> <br /> <br /> 
<! - CSS Mac Dock ->

IF it doesn't work, look for spaces in the closing tags that don't belong there or check that the path is correct, I think it might not be.


If its suppose to be a free standing page, its missing the top part of the header and the footer to make it HTML compliant.
 
Back
Top