hi dear
thats my first thread here
i have a joomla site and it was working good
but few days ago my site shows blank page (only header and footer and when choose show page source it shows complete source without any problem ) this happens with ie7 and older with ie8 everything is ok
and with firfox and all other browser its ok too
thats my site url (its arabic language site)
http://badrashein.com
please help me and if you want source css i will post it
however its passed css validation with no major errors

Dani AI

Generated

Hi — short, practical checklist (building on 's inspector suggestion) that usually finds IE7-only “content invisible” problems: an unclosed conditional comment that causes IE to treat the rest of the page as a comment; an IE-only stylesheet or CSS hack that hides or pushes the main wrapper off-screen; collapsed containers caused by floats/clear/hasLayout differences; or an early IE-only JavaScript error (examples that commonly break IE7: a trailing comma in an object literal or calls to console.log when the console object is undefined).

Steps to try now: open a DOM inspector (IE8+ F12 or a DOM tool that can show the rendered DOM) and inspect the page wrapper (look for #content, #wrapper, etc.) — inspect computed styles, not View Source. Check for display:none, visibility:hidden, height:0, large negative margins, position:absolute off-screen, or overflow:hidden. Disable stylesheets or uncheck rules until the content reappears. Search template files for conditional comments like <!--[if and confirm each has a matching close. Disable JavaScript temporarily or watch the console for errors; remember IE7 behavior can differ from IE8 compatibility mode, so test in a real IE7 environment.

Quick test fixes: add zoom:1; or overflow:auto; to the wrapper to trigger hasLayout, or add a clearfix after floated columns. Backup the template and test on staging. If those steps restore content, post the top-level HTML/CSS or a screenshot of the inspector so helpers can identify the exact rule.

Recommended Answers

All 2 Replies

i did but i can not find what exact reasons
or i can not use this plugin fine
also i try to use F12 in IE8 but same problem i do not how to use it exactly

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.