I need some urgent help with my website : http://studenttribes.com/ . The website is displayed correctly in Chrome and Firefox while its breaking in IE. The most surprising thing is that its breaking even in IE 8 ! The key problem is that the "Theme" is not getting applied at all.
At the moment I am finding the issue pretty baffling . Any help would be greatly appreciated.
Try enabling the "Optimize CSS Files" setting on the Performance page (admin/settings/performance). If that doesn't help, you may have a typo in your CSS.
Related
I'm using Opera GX, and after just a few days of usage, I seem to find the same problem: some links do not show up when hovering over them. I do not know the cause of this.
One solution has helped, (by turning off hardware acceleration,) but however this doesn't always work, as leaving a window open for too long will hide the URL, and the only way to fix it is to open another window.
I can find no other solution other than that. On another note, links show up as intended on Speed Dial. I am using the latest version of Opera GX.
If anyone knows a solution, help would be much appreciated.
Thanks, Omega207
Help.
I cannot view code samples in stackoverflow. I am running ubuntu 14.04 and mozilla firefox. Even as I am typing this, I cannot see what I am typing in the body box, allthough I can see the preview output. There seems to be an issue with my linux fonts installation, probably not a browser issue.
Could someone tell me which font the code samples use, as this will help me investigate further.
Apologies for the bad format of this post. It is difficult when you can't see what you are typing.
Thanks in advance.
Looks like the issue relates to mozilla firefox. The Fonts are appearing in chrome.
Update: the problem was resolved by reinstalling firefox.
It's my first time hier.
I'm discover the CMS impresspage and I'm very glad with.
I'm install the program, all is good, expect one. The little image on admin are not visible. You can see All icon.svg are strang
I tried on Firefox 28 and Chrome 34
You can see on http://slorimier.ch/cms/ImpressPages/admin, demo and demo123
I have made all icon as png, but is for me difficult to understand how make the change.
If someone can me help, I'm glad.
Thanks all.
Stéphane
I had the same issue and I found the the solution there : http://www.w3.org/services/svg-server/
The htaccess fix did the trick for me.
Those images work on Firefox and Chrome. The only reason I could think of is failed file upload to the server. Try to reupload "Ip" directory to the server once again.
Recently I decided to write a very simple Google Chrome extension. All it's going to do is to hide some DOM-elements from the web-page using JavaScript when user presses the extension's button.
Since I knew nothing about Chrome extensions, I started reading tutorials, and I came across this Google's sample: A browser action with no icon that makes the page red
This sample is really close to what I want to make. The problem is that I can't make it work. Whenever I load the extension in Chrome, I can see the button of this extension, but when I press it - nothing happens. Sample doesn't work, probably I should know something I don't know yet.
And before you started asking me:
Yes, I tried restarting the browser;
I use the newest version of Chrome.
Thanks for help.
If you open up the sample zip... find backgrond.js... edit.
Find the line that says:
null, {code:"document.body.style.background='red !important'"});
and remove the "!important". so it should read:
null, {code:"document.body.style.background='red'"});
That is it. just save and reload the extension, should work (unless the page has an !important flag set to the background).
I am afraid I don't know why the "!important" tag doesn't work but I have never been able to get it to work in an extension. Hopefully someone else here will be able to give an explanation and maybe a work around.
I think I can help bring some clarification to the "!important" override attribute causing the extension to break. Though I am not 100% I believe that this attribute is not allowed for issues involving security complications. I have a link to another SO thread that may help clarify this as well.
My CSS is not getting injected through my content script
I'm assuming from reading this article that you must either use the !important override when content scripts specified in the manifest file. Otherwise if the css is being injected !important is not required. Again not 100% on this.
I'm using the very impressive CSS3PIE (http://css3pie.com) library to add support for CSS3 styles in IE6-8. It works fine in versions 7 and 8 and took a lot of pain out of the process.
However, in IE6 no CSS3 styles are shown at all. In fact, looking at the server logs, I can see that IE6 doesn't even download the PIE.htc file, which is necessary for the magic to work. The content type for the file is set correctly as text/x-component, it's referenced by absolute URL, and works fine in IE7 and 8.
I'm using Compass (www.compass-style.org) and the PIE helper which makes the CSS look like this:
#shopping_cart {
behavior: url("/media/static/css/PIE.htc");
position: relative;
border-radius: 10px;
}
I can't figure out what the problem is. Does anyone have any ideas what might cause IE6 to skip the behavior definition altogether?
Cheers,
Jonas
See if the information on this question is helpful:
CSS3 PIE - Giving IE border-radius support not working?
I just had a coworker run into a similar problem in IE8 - he was getting a permission denied error in the DOM inspector because he was trying to test it on the local machine. Putting it up on a dev server and testing from there solved the problem. Probably not the same issue here, but posting it anyway in case it helps other users.
As for IE6 in general, I usually tell people it's not worth paying extra to have everything look identical in IE6 especially when it's such a superficial visual issue and so few people use it. Pixel perfect rendering across browsers is not nearly as important as being functionally consistent. That said, if you want to pay me $200 an hour (double my rate because it's such a PITA and a waste of time), go right ahead - it's your money. ;-)