Web Hosting Vodahost    

Home Take The Royal Tour! Order Now Features Prices
Go Back   Web Hosting > VodaHost Talk & News > Freelance Projects

Notices

Freelance Projects Do you need something done for you? Logo, template, script installation, shopping cart, form or even a full website? Post your project here.

Reply
 
Thread Tools
  #1  
Old 02-20-2009, 04:42 AM
Major
 
Join Date: Dec 2007
Location: Bastrop, TX USA
Posts: 362
Send a message via Yahoo to jcaywood
Default CSS menu using single page

I am completely remaking my wife's site and it's coming along well (I think).
However I have spent over 4 days trying to get a horizontal menu bar installed.

I've published the index page under a subdomain: HERE

I started with a menu where the words were on tabs and would move up when hovered. I've abandoned that.

I have now made a menu via CSS MenuMaker - it's number 014 - far right column third from the top. It generates the code. The colors here show black and blue on hover. My wife wants a dark purple (Red:128;Green:0;Blue:12 with white lettering which turns to a light purple (the color of the page-Red: 198;Green:140;Blue:255) with black lettering when hovering. I got the colors of the gifs changed in Paint.
It should run all the way across the screen and be placed as a divider directly below the header containing goofy...logo.

I am using the single page method with php. The white box on the right is actually on each page with the info re the product - all else is in the header.html with the code "include..." placed on each page.

I"m gray-haired now but I have hair. Another day or so of this and I may not have hair. Plus my wife knows how she wants it.

You will note on the page as linked above what I am getting is a vertical menu - sorta - with the coding appearing. I"ve done everything I can read about and think about but to no avail.

I'd appreciate it if anyone can do this. Just let me know your price and any other info you need from me.

Thanks
Jerry
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #2  
Old 02-20-2009, 08:14 AM
Collectors-info's Avatar
General
 
Join Date: Feb 2006
Location: London (UK)
Posts: 7,544
Default Re: CSS menu using single page

Hi, look like two things you might have to do.
1 . have you downloaded the images for the menu from that site? If so you need to place a file publisher on your BV page & add both images.
2. you are missing the part in red on the css that will go in your html head area, & remove the images/ part marked in blue. If you just cut & paste the part below & replace the one you have in the head of the page at the moment, & it should work fine.
Note.
Remember to pull out your html box to let the menu expand horizontally.


<style type="text/css">
ul#menu{margin:0;
padding:0;
list-style-type:none;
width:auto;
position:relative;
display:block;
height:40px;
text-transform:uppercase;
font-size:13px;
background:transparent url("black.jpg") repeat-x top left;
font-family:Helvetica,Arial,Verdana,sans-serif;}
ul#menu li{display:block;
float:left;
margin:0;
pading:0;
border-right:1px solid #ffffff;}
ul#menu li a{display:block;
float:left;
color:#ffffff;
text-decoration:none;
padding:12px 20px 0 20px;
height:24px;
height:40px;}
ul#menu li a:hover{background:transparent url("blue.jpg") repeat-x top left;}
</style>
__________________
Regards Chris,
Sites are view in FF & IE, with res @ 1024 x 768 on 19” screens.

Barnet walks
How to ask for help on the forum. - VH prices. - BV Tutorials. - Using PIXresizer - Image/Photo Tips -
Collectables, Collecting


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old 02-20-2009, 08:50 AM
navaldesign's Avatar
General & Forum Moderator
 
Join Date: Oct 2005
Location: Italy
Posts: 10,052
Default Re: CSS menu using single page

Here is the code:

<style type="text/css">
ul#menu{
margin:0;
padding:0;
list-style-type:none;
width:auto;
position:relative;
display:block;
height:40px;
text-transform:uppercase;
font-size:13px;
background:transparent url("purple.gif") repeat-x top left;
font-family:Helvetica,Arial,Verdana,sans-serif;
}
ul#menu:hover {
color: #000000;
}
ul#menu li{
display:block;
float:left;
margin:0;
pading:0;
border-right:1px solid #ffffff;
}
ul#menu li a{
display:block;
float:left;
color:#ffffff;
text-decoration:none;
padding:12px 20px 0 20px;
height:24px;
height:40px;
}
ul#menu li a:hover{
background:transparent url("purple1.gif") repeat-x top left;
color:#000000;
}
</style>

You need to copy / paste in the Between Head tag of your page HTML.

Here are the two images (upload them in your site using either FTP or the BV built in file uploader as Chris suggested):

http://www.dbtechnosystems.com/Tips/css_menu_images.zip

And here is the demo:


http://www.dbtechnosystems.com/Tips/css_menu.html
__________________
Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old 02-20-2009, 10:47 AM
Collectors-info's Avatar
General
 
Join Date: Feb 2006
Location: London (UK)
Posts: 7,544
Default Re: CSS menu using single page

Ah! your not meant to notice that i missed this part of the question. lol
__________________
Regards Chris,
Sites are view in FF & IE, with res @ 1024 x 768 on 19” screens.

Barnet walks
How to ask for help on the forum. - VH prices. - BV Tutorials. - Using PIXresizer - Image/Photo Tips -
Collectables, Collecting


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old 02-20-2009, 03:53 PM
Major
 
Join Date: Dec 2007
Location: Bastrop, TX USA
Posts: 362
Send a message via Yahoo to jcaywood
Default Re: CSS menu using single page

Thank you! Thank you! Thank you!
It works!
You guys are great. I really appreciate your help.
If I owe you just let me know. It's worth it. Now I'm sorta a hero to my wife (yeah, right)
Thanks again.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply


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

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 Off



All times are GMT +1. The time now is 08:34 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC7
2005-2009 VodaHost Web Hosting Your Perfect Web Host - All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203