adjusting the dropbox appearance
1) Script Title: adjusting the dropbox appearance
2) Script URL (on DD): http://www.dynamicdrive.com/style/cs...side_bar_menu/
3) Describe problem: not a problem, just questions...
OK, I hope I am doing this right (following the forums, posting in the right places, etc).
*) How to remove the box shadow out of the submenus?
*) How to make the box edge into "rounded corner" (including the main menu)?
*) This side menu design in CSS uses "." (dot), so that's CLASS then? Was there a reason for that, instead of use "#" for ID? Just asking, nothing I want to change.
*) How to call the NAV.PHP into INDEX.PHP? What I am trying to do is put all the menu coding in NAV.PHP file, to make the INDEX.PHP file less clutter.
*) Do I need Java file somewhere for this to work?
*) Should the website be in PHP or HTML, or it doesn't matter? See below of my coding:
Code:
INDEX.PHP
<link rel="stylesheet" type="text/css" href="style.css" />
<?php include("nav.php"); ?>
<div>
<p> ...</p>
<p> ... Words to live by...</p>
<p> ...</p>
</div>
NAV.PHP
<div class="nestedsidemenu">
<ul>
<li><a href="#">Home</a></li>
etc...
STYLE.CSS
stuff...