Results 1 to 2 of 2

Thread: Menu Separators

  1. #1
    Join Date
    Mar 2006
    Location
    Macomb, MI, USA
    Posts
    5
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Menu Separators

    Chrome Menu
    http://www.dynamicdrive.com/dynamici...rome/index.htm

    I can't find a really good way to create a separator in the Chrome Menu.
    http://templates.meemic.com/MenuTest/

    You can see my extra separator under the Directories menu option. Does Chrome support anything like this? Am I being goofy wanting something like this?

    Thanks, John


    I added the following to my CSS:
    Code:
    .dropmenudiv a.separator{
    	width: auto;
    	display: block;
    	text-indent: 1px;
    	border-bottom: 1px solid #CCC; /*THEME CHANGE HERE*/
    	padding: 2px 0;
    	text-decoration: none;
    	font-family: Verdana, Arial, Helvetica, sans-serif;
    	color: black;
    	background-color: #EEE;
    
    }
    
    .dropmenudiv a.separator:hover{ 
    	background-color: #EEE;
    }
    I added this to my menu code:
    Code:
    <div id="menu_3" class="dropmenudiv">
    	<a href="/directories/agentlist.asp" target="_top">Agent - Addresses</a>
    	<a class="separator"></a>
    	<a href="/directories/drplist.asp" target="_top">Direct Repair Shops</a>
    	<a href="/directories/towlist.asp" target="_top">Towing List</a>
    </div>

  2. #2
    Join Date
    Jan 2008
    Location
    Colorado
    Posts
    38
    Thanks
    5
    Thanked 0 Times in 0 Posts

    Default

    I may be mistaken by what you want, but you can add to your original menu code a "margin-bottom: #px;" just replace the # with a number you like and if you want an actual line you can also add a "border-bottom: #px solid #000;" again change the first # to a number and color to whatever you like.

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •