Click here to Skip to main content
15,890,897 members
Home / Discussions / Web Development
   

Web Development

 
Generalcross tab Crystal report to suppress column when no data Pin
VB.Net Developer23-Mar-08 20:36
VB.Net Developer23-Mar-08 20:36 
GeneralStyling Help - PLEASE Save me from insanity! Pin
Brady Kelly22-Mar-08 0:53
Brady Kelly22-Mar-08 0:53 
GeneralRe: Styling Help - PLEASE Save me from insanity! Pin
Johnny ²22-Mar-08 3:09
Johnny ²22-Mar-08 3:09 
GeneralRe: Styling Help - PLEASE Save me from insanity! Pin
Brady Kelly22-Mar-08 3:24
Brady Kelly22-Mar-08 3:24 
GeneralRe: Styling Help - PLEASE Save me from insanity! Pin
Declan Bright22-Mar-08 3:31
Declan Bright22-Mar-08 3:31 
GeneralRe: Styling Help - PLEASE Save me from insanity! Pin
Johnny ²22-Mar-08 5:08
Johnny ²22-Mar-08 5:08 
GeneralRe: Styling Help - PLEASE Save me from insanity! Pin
lbothell4-Apr-08 10:15
lbothell4-Apr-08 10:15 
GeneralRe: Styling Help - PLEASE Save me from insanity! Pin
Shog924-Mar-08 4:56
sitebuilderShog924-Mar-08 4:56 
Use explicit rules for it then. Rather than doing something like:
.myDiv
{
   font-size: 11px;
   font-weight: bold;
}
use:
.myDiv input, .myDiv textarea
{
   font-size: 11px;
   font-weight: bold;
}
This keeps the requirement that affected elements are descendants of your div, but specifies the types of elements that are to be affected rather than relying on them to inherit them from the div itself (which may not, and in this case are not, children of the div itself).

Of course, don't forget that fixing a font size in pixels might cause issues for users of older browsers (IE) that don't let users increase the size of fonts that use non-relative sizes.



GeneralRe: Styling Help - PLEASE Save me from insanity! Pin
Brady Kelly24-Mar-08 6:50
Brady Kelly24-Mar-08 6:50 
GeneralJavascript (Floating DIV reading from html) Pin
Jacob Dixon21-Mar-08 13:45
Jacob Dixon21-Mar-08 13:45 
GeneralRe: Javascript (Floating DIV reading from html) Pin
Johnny ²21-Mar-08 21:53
Johnny ²21-Mar-08 21:53 
GeneralRe: Javascript (Floating DIV reading from html) Pin
Declan Bright22-Mar-08 2:56
Declan Bright22-Mar-08 2:56 
GeneralRe: Javascript (Floating DIV reading from html) Pin
Jacob Dixon22-Mar-08 4:08
Jacob Dixon22-Mar-08 4:08 
GeneralRe: Javascript (Floating DIV reading from html) Pin
Vijay Sindhu25-Mar-08 23:46
Vijay Sindhu25-Mar-08 23:46 
GeneralBYTE array issue Pin
Dave_21-Mar-08 9:53
Dave_21-Mar-08 9:53 
GeneralRe: BYTE array issue Pin
Colin Angus Mackay21-Mar-08 23:52
Colin Angus Mackay21-Mar-08 23:52 
GeneralRe: BYTE array issue Pin
Shog923-Mar-08 12:23
sitebuilderShog923-Mar-08 12:23 
GeneralIE browser Pin
Ida_merry21-Mar-08 5:26
Ida_merry21-Mar-08 5:26 
GeneralRe: IE browser Pin
led mike21-Mar-08 5:40
led mike21-Mar-08 5:40 
GeneralJavascript: adding rows to a table dynamically. Pin
User 988521-Mar-08 1:01
User 988521-Mar-08 1:01 
GeneralRe: Javascript: adding rows to a table dynamically. Pin
User 988521-Mar-08 2:26
User 988521-Mar-08 2:26 
GeneralRe: Javascript: adding rows to a table dynamically. Pin
User 988523-Mar-08 6:38
User 988523-Mar-08 6:38 
GeneralCS0103 variable does not exist in this context Pin
scratchmonkey20-Mar-08 9:27
scratchmonkey20-Mar-08 9:27 
GeneralRe: CS0103 variable does not exist in this context Pin
Steve Echols20-Mar-08 11:12
Steve Echols20-Mar-08 11:12 
GeneralRe: CS0103 variable does not exist in this context Pin
scratchmonkey20-Mar-08 14:50
scratchmonkey20-Mar-08 14:50 

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.