Problem with posts on Cyrillic
-
Admin
Topic moved to Support. Please post in the correct section next time.
Please also advise me how to achieve a same appearance on the site for Mozilla and IE?
I’ve been doing CSS for many years now… and I still struggle for an easy explanation for this. Programming would advance at five times the current rate if we didn’t have to take into account IE.
What’s the page URL where your posts are wrong?
oops, sorry – http://nuancet.eu/
What is the content?? It looks like a bunch of links which go nowhere.
The content is mainly information for different products. In fact only colors defined in my child style.css appears not correctly in IE and all defined as “gradient” colors appears not the same in IE? For example In IE header background color is only black?
#header-menu {
-moz-border-radius:4px;
-webkit-border-radius:4px;
border-radius:4px;
background-image: -moz-linear-gradient(center top, #000,#2d86b9);
background: -webkit-gradient(linear, 0 0, 0 bottom, from(#000),to(#2d86b9));
background: linear-gradient(#000,#2d86b9);
-pie-background: linear-gradient(#000,#2d86b9);
border: 1px solid #010101;
text-shadow: 0px -1px 0px #ccc;
}
You would have to add something like this to display gradient in IE:
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#cccccc', endColorstr='#000000');IE doesn’t read the -moz or -webkit properties.
Viewing 10 posts - 1 through 10 (of 15 total)
- 1
- 2
- You must be logged in to reply to this topic.
