Click here to Skip to main content
15,905,028 members

Bugs and Suggestions

   

General discussions, site bug reports and suggestions about the site.

For general questions check out the CodeProject FAQs. To report spam and abuse Head to the Spam and abuse watch. If you wish to report a bug privately, especially those related to security, please email webmaster@codeproject.com

 
GeneralRe: Hindi forum - could it support more Indian languages? Pin
Dalek Dave22-Jul-10 21:34
professionalDalek Dave22-Jul-10 21:34 
GeneralRe: Hindi forum - could it support more Indian languages? Pin
Dan Neely23-Jul-10 2:21
Dan Neely23-Jul-10 2:21 
GeneralRe: Hindi forum - could it support more Indian languages? Pin
Dalek Dave23-Jul-10 3:10
professionalDalek Dave23-Jul-10 3:10 
GeneralRe: Hindi forum - could it support more Indian languages? Pin
Luc Pattyn23-Jul-10 3:10
sitebuilderLuc Pattyn23-Jul-10 3:10 
Generalbusted smiley Pin
Chris Losinger22-Jul-10 15:49
professionalChris Losinger22-Jul-10 15:49 
GeneralRe: busted smiley [modified] Pin
Chris Maunder26-Jul-10 10:53
cofounderChris Maunder26-Jul-10 10:53 
GeneralChange Request Pin
Bassam Abdul-Baki22-Jul-10 5:35
professionalBassam Abdul-Baki22-Jul-10 5:35 
GeneralRe: Change Request Pin
Chris Maunder22-Jul-10 8:31
cofounderChris Maunder22-Jul-10 8:31 
GeneralRe: Change Request Pin
Bassam Abdul-Baki22-Jul-10 8:48
professionalBassam Abdul-Baki22-Jul-10 8:48 
GeneralGoogle Toolbar spell checking feature Pin
Ray Cassick22-Jul-10 5:16
Ray Cassick22-Jul-10 5:16 
GeneralRe: Google Toolbar spell checking feature Pin
Chris Maunder22-Jul-10 6:19
cofounderChris Maunder22-Jul-10 6:19 
GeneralAnnoying Sentence Structures (ASS) Pin
Bassam Abdul-Baki22-Jul-10 2:30
professionalBassam Abdul-Baki22-Jul-10 2:30 
GeneralRe: Annoying Sentence Structures (ASS) Pin
Chris Maunder22-Jul-10 2:54
cofounderChris Maunder22-Jul-10 2:54 
GeneralRe: Annoying Sentence Structures (ASS) Pin
Bassam Abdul-Baki22-Jul-10 2:56
professionalBassam Abdul-Baki22-Jul-10 2:56 
GeneralMore ASS Pin
Bassam Abdul-Baki22-Jul-10 4:04
professionalBassam Abdul-Baki22-Jul-10 4:04 
GeneralRe: More ASS Pin
Chris Maunder22-Jul-10 9:58
cofounderChris Maunder22-Jul-10 9:58 
GeneralRe: More ASS Pin
Bassam Abdul-Baki22-Jul-10 10:04
professionalBassam Abdul-Baki22-Jul-10 10:04 
GeneralRe: More ASS Pin
Chris Maunder22-Jul-10 10:04
cofounderChris Maunder22-Jul-10 10:04 
GeneralRe: More ASS Pin
Bassam Abdul-Baki22-Jul-10 10:08
professionalBassam Abdul-Baki22-Jul-10 10:08 
GeneralRe: More ASS Pin
Bassam Abdul-Baki28-Jul-10 1:52
professionalBassam Abdul-Baki28-Jul-10 1:52 
GeneralRe: More ASS Pin
Chris Maunder28-Jul-10 2:36
cofounderChris Maunder28-Jul-10 2:36 
GeneralRe: More ASS Pin
Bassam Abdul-Baki3-Aug-10 1:12
professionalBassam Abdul-Baki3-Aug-10 1:12 
GeneralRe: More ASS Pin
Chris Maunder3-Aug-10 2:42
cofounderChris Maunder3-Aug-10 2:42 
GeneralRe: More ASS Pin
Bassam Abdul-Baki4-Aug-10 3:28
professionalBassam Abdul-Baki4-Aug-10 3:28 
GeneralRe: More ASS Pin
Chris Maunder4-Aug-10 9:22
cofounderChris Maunder4-Aug-10 9:22 
a) It's gratifying that you noticed

b) The issue was a weird one.

In Gecko and WebKit, if you specify that a table cell is to be displayed as a block then the boundaries of that cell (at least the boundary where a border will be drawn) can be shorter than the height of the row.

I have a set of buttons that appear when you hover over a row (class=hover-row). The buttons are wrapped in a SPAN that is displayed when you hover over the row, and their position is constrained by the immediate container they are within (class=hover-container). To position the buttons correctly, the container needs to have position:relative and display:block, and the buttons themselves are position:absolute. If the hover-container element (the table cell, in this case) doesn't have relative/block then the bottons appear at the top right of the page. If they do have relative/block then the border of the cell is screwed up since the cell can now be shorter than the row.

It dawned on me around 1am that all I was trying to do was constrain the buttons to be within the table cell, so I wrapped everything in the table cell within a div, gave it the hover-container class, and bingo, everything worked.
cheers,
Chris Maunder

The Code Project | Co-founder
Microsoft C++ MVP

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.