On Mar 13, 3:07 am, AndreaD <[email protected]> wrote: > Hi, > > I have been searching the forums, but I haven´t been able to find some > answers. > > I have a Java code which should load an img gallery in Drupal. The > code doesn´t work properly. > > When I look at it with the Firebug it looks like > this:http://pagehouse.net/firebug.jpg > > I have some lighter colors in the code. > > Some of these elements are set as display:none. But even I take > display:none away they don´t show up on the site, and in Firebug they > remain lighter too. Some of the other elements - as I have highlighted > on the picture - are appearing as they should, but still lighter in > the color in the code. > I an not really find any logical explanation on this. > > Any idea what this could mean?
The gray HTML means it is not visible. The actual code in firebug is return elt.offsetWidth > 0 || elt.offsetHeight > 0 || elt.localName in invisibleTags || isElementSVG(elt) || isElementMathML(elt); In your case I suggest looking at the outermost parent that is gray and check both the style values (which you can try disabling) and properties (you can test changes to values). jjb > I would really appreciate some help. > > Thanks in advance! > AndreaD -- You received this message because you are subscribed to the Google Groups "Firebug" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/firebug?hl=en.
