http://ec2-75-101-227-98.compute-1.amazonaws.com/app/uploads/1020024195/index.html
The above link is what I have now. I'm learning bit by bit here. I have a major question:
I sometimes have more text than my content text box allows. what is the code for it to allow text overflow automatically (keeping the text housed in the content box at all times)?

Frame Layer
_frame will allow the content region to automatically expand. I highly suggest using it with _bodybg and _center to keep everything inline. IF you require we have one that will build a scroll bar within the content area instead of expanding
Scroll Frame
http://psd2cssonline.com/node/128#scroll
Frame
http://psd2cssonline.com/node/128#frame
I hope this helps: Brandon
Brandon thanks again so much!
Brandon thanks again so much! Another major issue I"m having are the making a "normal" drop down menu (hover over the name, it opens the drop down menu. Then when cursor is no longer hovering over any menu, it disappears in an instant). Is this doable? I tried your dynamic menus but I don't like the few seconds it takes to remove the menu---these need to be extremely fast and responsive. I'll keep trying unless you have another response
-miguel
Changing Hover Menu Time
You can go to the source code to figure out all the different metrics and how the code was built and designed. I have copied the source that will have the instructions on how to modify the _hmenu timeliness =)
// This is code to handle the about_hmenu_empty menu
$("#Layer-13").hide().addClass("allMenus");
$("#Layer-18").mouseover(function(e){
e.preventDefault();
$(".allMenus").hide();
$("#Layer-13").show();
// Remove the following 2 lines if you don't want this menu to dissappear
// automatically. Change how long the menu stays visible by changing
// the 4000 to another number of milliseconds
clearTimeout( timerId );
timerId = setTimeout( '$("#Layer-13").hide()', 4000 );
I hope this helps...
Brandon
Brandon Hello again. I tried
Brandon
Hello again. I tried the code...hasn't worked.
1. Where exactly do I place this code? I've tried everywhere!
2. I see it's got "Layer 13" and others labeled. Is this pertaining to my site? If so, again, where do I put it?
3. I was tinkering with "menu3.psd" that you have (has a calendar and kites in the background). I tried inputting this code but to no avail again.
thanks again for looking for me, I'll await any response you may have
-miguel
Menu Drop Time
You need to find this in your generated code from PSD (control/F to locate it)
clearTimeout( timerId );
timerId = setTimeout( '$("#Layer-13").hide()', 4000 );
And delete that line OR YOU CAN change the 4000 to whatever millisecond you want.
PS if you can not get it... please Post your PSD or send it support so I can look at it in detail...
that should do it...
Brandon