Go Back   Webmaster Malaysia Forum » Website Design & Development » Website Design

Reply
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 26-07-2004, 09:54 PM
New kid on the block
 
Join Date: Sep 2001
Location: Ice Ring of Tigrin
Posts: 6
Rep Power: 0
shekyen is on a distinguished road
Send a message via Yahoo to shekyen
I need help urgently

Hi there,
I am having this problem, i m trying to do a mouse over menu. When u mouse the link there'll another sets of link right below the main link. I m using show hide layers to do it.

But the problem is, the position change according to different screen resolution, I've already put the layer in the table. but still it changes according to different size of screen resolution.

Example can see at www.gigaweb.com.my/about_us/index.html

Anyone can help??? Pls..... :|

Thank you
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2 (permalink)  
Old 27-07-2004, 04:44 AM
lcf's Avatar
lcf lcf is offline
Pro-Blogger
 
Join Date: Feb 2003
Location: Kluang, Johor
Posts: 2,376
Rep Power: 116
lcf will become famous soon enough
Send a message via ICQ to lcf Send a message via MSN to lcf Send a message via Yahoo to lcf
CSS problem?

Well, I suggest you search for dhtml menu in Google:
http://www.google.com/search?hl=en&i...8&q=dhtml+menu
__________________
LiewCF | Malaysia Bloggers Forum
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3 (permalink)  
Old 27-07-2004, 08:35 AM
New kid on the block
 
Join Date: Sep 2001
Location: Ice Ring of Tigrin
Posts: 6
Rep Power: 0
shekyen is on a distinguished road
Send a message via Yahoo to shekyen
No... I've checked.. its not becoz of the CSS

AHHHH... I need help
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4 (permalink)  
Old 27-07-2004, 01:45 PM
Novice Webmaster
 
Join Date: Apr 2004
Location: Miri, Sarawak
Posts: 93
Rep Power: 56
GeminiGeek is on a distinguished road
Send a message via MSN to GeminiGeek Send a message via Skype™ to GeminiGeek
i've checked ur site code....

Code:
style="Z-INDEX: 7; WIDTH: 175px; POSITION: absolute; TOP: 227px; HEIGHT: 47px; left: 233px; visibility: hidden"
ok, if u see, it is BECOS OF CSS. Why? notice that POSITION: Absolute; ? That causes the problem. I guess that's it.

To fix it, im not so sure how
__________________
Don't Ask Me Why I Joined This Forum
GeminiGeek's Online Journal
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5 (permalink)  
Old 27-07-2004, 02:10 PM
New kid on the block
 
Join Date: Sep 2001
Location: Ice Ring of Tigrin
Posts: 6
Rep Power: 0
shekyen is on a distinguished road
Send a message via Yahoo to shekyen
huh? serious? so what should I put.. surely cant be relative or static right?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6 (permalink)  
Old 28-07-2004, 12:03 AM
lcf's Avatar
lcf lcf is offline
Pro-Blogger
 
Join Date: Feb 2003
Location: Kluang, Johor
Posts: 2,376
Rep Power: 116
lcf will become famous soon enough
Send a message via ICQ to lcf Send a message via MSN to lcf Send a message via Yahoo to lcf
use relative instead of 'absolute'
__________________
LiewCF | Malaysia Bloggers Forum
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7 (permalink)  
Old 29-07-2004, 04:09 PM
mysticmind's Avatar
Super Moderator
 
Join Date: Jun 2001
Location: Mystic Kingdoms
Posts: 2,633
Rep Power: 142
mysticmind will become famous soon enough mysticmind will become famous soon enough
Send a message via Yahoo to mysticmind
percentage?
width=175 to width=30%?
__________________
Personal's Blog! - Malaysian Artist!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8 (permalink)  
Old 29-07-2004, 04:54 PM
New kid on the block
 
Join Date: Sep 2001
Location: Ice Ring of Tigrin
Posts: 6
Rep Power: 0
shekyen is on a distinguished road
Send a message via Yahoo to shekyen
mystic mind...go to http://www.gigaweb.com.my/about_us/try.html

I dont think i set percentage... and position :absolute doesnt work too!!

Can someone help?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9 (permalink)  
Old 30-07-2004, 09:52 AM
Novice Webmaster
 
Join Date: Jul 2004
Location: kl
Posts: 17
Rep Power: 0
grren_bean is on a distinguished road
The code below should do it but you might need to adjust the HEIGHT. It looks ok in my firefox 0.9.2 but moves up a little in IE6, so you might need to adjust to your preferred browser...



<div id=products onMouseOver="MM_showHideLayers('products','','show ')"
style="Z-INDEX: 7; WIDTH: 175px; POSITION: relative; TOP: 38px; HEIGHT: 47px; left: 0px; visibility: hidden"
onMouseOut="MM_showHideLayers('products','','hide' )" class="nav">
.
.
.
.
.
<div style="POSITION: relative; TOP: -24px;">
<a onMouseOut="MM_swapImgRestore();MM_showHideLayers( 'products','','hide')"MM_nbGroup('out');MM_startTi meout(); href="../product_service/index.html" onMouseOver="MM_swapImage('Image1','','../images/link_prod1.gif',1);MM_showHideLayers('products','' ,'show')" ><img src="../images/link_prod.gif" width="175" height="15" border="0" name="Image1"></a>
</div>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10 (permalink)  
Old 30-07-2004, 10:19 AM
New kid on the block
 
Join Date: Sep 2001
Location: Ice Ring of Tigrin
Posts: 6
Rep Power: 0
shekyen is on a distinguished road
Send a message via Yahoo to shekyen
I am kinda confused... after changed to code above..

look at http://www.gigaweb.com.my/about_us/try5.html
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #11 (permalink)  
Old 30-07-2004, 10:38 AM
Novice Webmaster
 
Join Date: Jul 2004
Location: kl
Posts: 17
Rep Power: 0
grren_bean is on a distinguished road
The modification is based on your try.html. You must make sure you didn't change anything else.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #12 (permalink)  
Old 30-07-2004, 03:45 PM
New kid on the block
 
Join Date: Sep 2001
Location: Ice Ring of Tigrin
Posts: 6
Rep Power: 0
shekyen is on a distinguished road
Send a message via Yahoo to shekyen
Yeap... i use that try.html n made the changes n save us try5.html
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #13 (permalink)  
Old 02-08-2004, 10:46 AM
Novice Webmaster
 
Join Date: Jul 2004
Location: kl
Posts: 17
Rep Power: 0
grren_bean is on a distinguished road
Maybe you didn't modify correctly. Put the code below where your td cell should be:

<td width="174" height="13">
<div id=products
onMouseOver="MM_showHideLayers('products','','show ')"
style="Z-INDEX: 7; WIDTH: 175px; POSITION: relative; TOP: 38px; HEIGHT: 47px; left: 0px; visibility: hidden"
onMouseOut="MM_showHideLayers('products','','hide' )" class="nav">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="#999999">
<table class=dropdownbg3 cellspacing=0
cellpadding=0 width="99%" border=0 align="center" height="50">

<tbody>
<tr>
<td class=dropdownbg2
onMouseOver="this.style.backgroundColor='#ffffff'; MM_showHideLayers('products1','','show')"
onMouseOut="this.style.backgroundColor='ffffcc';"M M_showHideLayers('products1','','hide') height="14" colspan="2"><a
class=nav
href="../product_service/index.html"><font
color=#db2519>»</font> Telebudget</a> &gt;
<div id=products1
onMouseOver="MM_showHideLayers('products','','show ','products1','','show')"
style="Z-INDEX: 6; WIDTH: 175px; POSITION: absolute; TOP: 1px; HEIGHT: 51px; left: 175px; visibility: hidden"
onMouseOut="MM_showHideLayers('products','','hide' ,'products1','','hide')" class="nav">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td bgcolor="#999999">
<table class=dropdownbg3 cellspacing=0
cellpadding=0 width="99%" border=0 align="center" height="50">
<tbody>
<tr>
<td class=dropdownbg2
onMouseOver="this.style.backgroundColor='#ffffff'; "
onMouseOut="this.style.backgroundColor='ffffcc';" height="11"><a
class=nav
href="http://www.redtone.com/corporate/index.php"><font
color=#db2519>»</font> Telebudget Postpaid</a></td>

</tr>
<tr>
<td class=dropdownbg2
onMouseOver="this.style.backgroundColor='#ffffff'; "
onMouseOut="this.style.backgroundColor='ffffcc';"
height=12><a class=nav
href="http://www.redtone.com/corporate/index.php"><font
color=#db2519>»</font></a><a class=nav
href="http://www.redtone.com/corporate/structure.php">
Telebudget Prepaid Card</a></td>
</tr>
<!-- <tr>
<td height="12" class="dropdownbg2" onmouseover="this.style.backgroundColor='#ffffff'; " onmouseout="this.style.backgroundColor='CADCE8';"> <a href="/corporate/index.php" class="nav"><font color="DB2519">&raquo;</font></a><a href="/corporate/corporate.php" class="nav">
Corporate Values</a></td>
</tr> -->
</tbody>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0" height="1">

<tr>
<td bgcolor="#CCCCCC"><img src="../IMAGES/SPACER.GIF" width="175" height="1"></td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</tr>

<tr>
<td class=dropdownbg2
onMouseOver="this.style.backgroundColor='#ffffff'; "
onMouseOut="this.style.backgroundColor='ffffcc';"
height=12><a class=nav
href="http://www.redtone.com/corporate/index.php"><font
color=#db2519>»</font></a><a class=nav
href="http://www.redtone.com/corporate/management.php">
SMS </a></td>
</tr>
<!-- <tr>
<td height="12" class="dropdownbg2" onmouseover="this.style.backgroundColor='#ffffff'; " onmouseout="this.style.backgroundColor='CADCE8';"> <a href="/corporate/index.php" class="nav"><font color="DB2519">&raquo;</font></a><a href="/corporate/corporate.php" class="nav">
Corporate Values</a></td>
</tr> -->
</tbody>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0" height="1">
<tr>
<td bgcolor="#CCCCCC"><img src="../IMAGES/SPACER.GIF" width="175" height="1"></td>

</tr>
</table>
</td>
</tr>
</table>
</div>
<div style="POSITION: relative; TOP: -24px;">
<a onMouseOut="MM_swapImgRestore();MM_showHideLayers( 'products','','hide')"MM_nbGroup('out');MM_startTi meout(); href="../product_service/index.html" onMouseOver="MM_swapImage('Image1','','../images/link_prod1.gif',1);MM_showHideLayers('products','' ,'show')" ><img src="../images/link_prod.gif" width="175" height="15" border="0" name="Image1"></a>
</div></td>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #14 (permalink)  
Old 07-08-2004, 07:31 PM
hymns's Avatar
Senior Webmaster
 
Join Date: Nov 2001
Location: Johor
Posts: 768
Rep Power: 100
hymns is on a distinguished road
Send a message via ICQ to hymns Send a message via Yahoo to hymns
apa lagi mystic tunjukkan ler kepakaran ko
__________________
I hate when:

vBulletin Message:
Sorry! The administrator has specified that users can only post one message every 60 seconds
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Help Needed URGENTLY! Please!! Webster Paid Hosting Discussion Forum 10 24-12-2006 12:49 AM
PHP/WEB Programmer Needed Urgently angelene Job Vacancies 1 20-12-2006 11:18 AM
Help! Need to Find Another Host Urgently! squarehippies Paid Hosting Discussion Forum 15 11-12-2006 10:52 PM
Web programmer ~ needed urgently ren Job Vacancies 3 13-10-2005 05:16 PM
Web Programmers Wanted URGENTLY pureinvestor Job Vacancies 0 24-11-2003 11:22 PM



All times are GMT +8. The time now is 03:07 AM. Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.1.0 vBulletin skin by ForumMonkeys.com.


WebmasterMalaysia.com is Proudly Hosted by Exabytes Semi Dedicated Server.