rajidae
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sugar and Spice] Incompatible with Internet Explorer 8 to 10I just added it to the header.php file. Anywhere in the top like right after the body declaration will do. It just needs to be run before those custom “header” tags gets parsed.
It’s a pity this is not included in theme from the beginning since Win XP where IE 8 is the default is still commonly used by lots of users.
This modification is also completely safe for other browsers since the conditional comments are only seen by older IE browsers.
Forum: Themes and Templates
In reply to: [Sugar and Spice] Incompatible with Internet Explorer 8 to 10An update!
The problem with IE is that it does not support the custom <header> tag used by this theme.
A solution to fix this would be to add the following createElement section somewhere at the top.
<!–[if lt IE 9]>
<script>
document.createElement(“header”);
</script>
<![endif]–>Forum: Plugins
In reply to: [Custom Login] Quotes in custom CSS gets replaced with useless quot escapesNow the quoting in Custom CSS works but since the backslash is not allowed you are not able to use escapes in your CSS.
For instance if you add a unicode escape sequence containing a slash into your CSS content attribute, the editor removes the slash when saved.
Also the Custom HTML does no longer allow the perfectly legal style tag and just removes the tags upon save, leaving the CSS content inside dangling.