IE8

Zyxware default image2
| 2 min read
Blocks in Drupal can be assigned to regions in specified pages. Two options which are already in Drupal 7's block configuration page are: All pages except those listed Only the listed pages And if you have enabled the PHP filter module, you may find another option: Pages on which this PHP code returns TRUE (experts only) In this article,I am going to explain to you, how you can display a block on pages based on the value returned by PHP code.
Zyxware default image1
| 2 min read
Many a times, IE7 stands out from the group of modern web-browsers owing to its notorious incompatibility with many a standard HTML/CSS/JS. In this article, we are seeing the following case of incompatibility: CSS border for Select (Drop down) element does not work. On one of my Drupal sites, while validating a form, when a required input field has not been filled before hitting the Submit button, an error message is shown, and the field is highlighted with a red border. The red border was achieved with this CSS:
Zyxware default image2
| 2 min read
A few Drupal users noticed that their CKEditor was not working in IE8. They had also noticed that the Debug Bar they had used was showing the error "Line 11 - Error Insufficient memory to continue this operation." The IE8 debugger tool also showed the following errors 'Drupal' is undefined on line 21, 25 and 28 in ckeditor.config.js & "insufficient memory' on line 11 in ckeditor.js". If you are facing the same issue in your Drupal site when using IE8 then read on.
Zyxware default image4
| 2 min read
For any site - be it Drupal or non-Drupal, this is most probably due to simple mistakes made while entering attributes. Let us see one very common case where a simple mistake can cause glaring issues: We usually see the css given something like this. We do not see any glaring issue in the class defined below. #header { background:url("images/headback.png")repeat-x; width:1020px; height:120px; font-family:arial; position:relative; }