Skip to main content
Participant
January 7, 2008
Question

SPry menu bar help

  • January 7, 2008
  • 7 replies
  • 3101 views
I have recently migrated from MS frontpage '03 to Dreamweaver CS3. I must admit , for a novice at WYSIWYG and a complete beginner at the html code, this transition was not as easy as I expected. However after purchasing a few books, and viewing some of the vids of adobe , I finally got the hang of things.

I am busy designing a school website, using one of the html templates offered by DW CS3 (two coloumns elastic,right sidebar, header and footer). I have inserted a spry horizonal Navigation bar under the banner(which is a jpg). Both th espry navigation and the banner is in the header part of the html template.

I have encountered three probs:
1) I cant change the colour of the spry menu bar and its drop down menu. When I look at the code/split view, I do not see any code relating to the color of the menu bar (ie. #999999).

2) I dont seem to know how to align the spry menu directly under the banner. (there is a slight space between the banner and the spry menu )

3) Also there is a slight grey space on top and at the bottom of the banner (even after I set the padding to 0px)

A reply would be highy appreciated Text Text gg
This topic has been closed for replies.

7 replies

Participating Frequently
July 21, 2008
never looked at the code, wondering some one might know a "quick" fix for this
ZenoneathAuthor
Participant
August 19, 2008
Thanks for all the help. I have managed to fix everything and will post the url soon.
Participating Frequently
July 21, 2008
to do best work in cs. follow the rule w3 org. i use the cssgarden as best example in css.
Participating Frequently
July 15, 2008
do you mind to share your school site with me.? i really want to see it and help you in some parts. In these days i am using div in style sheet and cs3 work great for me in macro media.
Participant
February 4, 2008
Possibly . . .
The use of a z-index (as opposed to x & y coordinates "indices") relates to the "stacking" order of layers. A z-index value of 500 is "closer" to the viewer than a z-index of 400.
For example:
<li z-index="500">
can be written into your code, item by item, with differing values for differing looks.
2 is closer to the viewer than 1 & 500 is closer to the viewer than 400, but there is no difference as far as "distance". "500" is as far away from "1" as "2" is, if those are the only DIV's (layers) values you are referencing . . .
I'm not familiar with frames - they've been shunned by my mentors.
And, I may not be their best student . . .
IntsSed
Known Participant
January 9, 2008
Thanks!
I have try add new Property without results "vertical-align: middle;
". All texts ever on the top of buttons.
Participating Frequently
January 9, 2008
perhaps you can show me a link to your page, or send the code, so i can have a look at it.
Hans
ZenoneathAuthor
Participant
January 11, 2008
Hey its me again, thanks for the advice Hans, it worked perfectly, I located the spry css file and changed all the settings accordingly. I have also completed this site, and its no ready for the owners to see.

I do not mean to bother you yet again, but I have now been tasked with yet another School, website. This time , however I have been given a photoshop template. Most of the site I have successfully managed to make via dreamweaver and css, but yet again I have more drop-down menu woes.

The template I was intended to use, uses photoshop slices, which I have turned into rollovers in the website. The only problem I have now is what to do in order to turn these 'roll-over images' to drop-down menues(such as horizonal spry menues).

I am using Dreamweaver CS3 , version 9.0.
IntsSed
Known Participant
January 9, 2008
Hi, hans haverlach!
CSS is good.
How I can align text "vertically middle" in each button (or all buttons)?
Horizontally all ok (align left, right, etc.)
(bacause in some buttons I have two text lines)

Please help!

Thanks!
Participating Frequently
January 9, 2008
Hi,
Well you should add this css line: vertical-align: middle;
in the right class, i'm not sure which one, it's a bit trial and error i guess.
By the way: in my spry menubars the text is standard aligned to middle (vertically), even with two lines of text.

Participating Frequently
January 8, 2008
Hi Zenoneath,
Possible answers to your probs:
1. Using the spry menubar, you also are linked to a sprymenubarhorizontal.css (look in your HEAD code), the css is located in the spryassets dir. Read the grey text between the css code and you find your answer to the colors.
2. Perhaps within the same CSS you can position the menubar exactly. otherwise place the complete menubarcode in a div and give this div a classname and position it within a css stylesheet.
3. Most likely, using a DW template, your already linked to a specific CSS file wich is combined with the template. In that CSS file you will find the headerdiv, and can change bg color there.

Looks like it all about CSS... life is simple...sometimes.
Hope it will work for you!
Hans