Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

checkboxes make page jump

Status
Not open for further replies.

RonKen

Technical User
Mar 9, 2002
6
US
Hello,
I have a list of checkboxes underneath each other. When the user clicks on the bottommost one of these checkboxes, the browser jumpes to the end of the page, where i have no content. Is there a way to stop the checkbox click from altering the page position??
THanks in advance
Juan
 
Show us some code. Sounds like you have an onFocus event happening. There's always a better way...
 
Hi,
Below are is my HTML page. The Divs are done in CSS and I have 8 rows of checkboxs with 2 check boxes per row.
The only way i could position the boxes was with DIVS.

Below the HTML is an extract from my CSS code.

Thanks in advance,
Juan


<div class=&quot;needs7&quot;>
<p>
<input type=&quot;checkbox&quot; name=&quot;Restaurants&quot; id=&quot;restaurants&quot;>
<label for=&quot;restaurants&quot;>Reastaurants</label>
</p>
<p class=&quot;needs&quot;>
<input type=&quot;checkbox&quot; name=&quot;festivals&quot; id=&quot;festivals&quot;>
<label for=&quot;festivals&quot;>Festivals/Events</label>
</p>
<input class=&quot;submit&quot; value=&quot;Submit&quot; type=&quot;submit&quot;>
</div>


div.needs7
{
position: relative;
left: 20%;
top: -98%;
color: #00007F;
}




div.access
{
position: relative;
left: 20%;
color: #00007F;
}

p.needs
{
position: relative;
left: 17%;
top: -9%;
}

 
Hey there,
Sorted that problem out. I removed the DIV tags and the problem is gone. I have positioned the checkboxes using absolute positioning and have specified the position from the left. THe div tags I had must have been too close together or something. Removing them has fixed this..

THanks,
Juan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top