Design issue

  • Thread starter Thread starter Jenny
  • Start date Start date
J

Jenny

Hi all,

My page has two panels. I like to place a button above the
top of the lower panel. The position is:

Button.Style.Add("left", "150px")
Button.Style.Add("top", "-40px")

The problem is, that the button is hidden by the upper
panel. How can I make ths element visible?


Cheers
Jenny
 
Jenny,

Is there a reason not to put the button in the panel?

Sincerely,

--
S. Justin Gengo, MCP
Web Developer

Free code library at:
www.aboutfortunate.com

"Out of chaos comes order."
Nietzche
 
Apparently your panels are overlapping due to the user of Absolute
poositioning to position them. Now, if these were two pieces of paper, and
something on the top of one sheet was hidden under the other sheet, what
would you do? You would do the same thing here.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
The more I learn, the less I know.
 
Back
Top