Hi ,
How are you?
I change the newscast to support my language Arabic.
but there is a problem only in ie browser
http://rehlat-world.com/example-ie6-problem
there is some text in right no appaer.
Hi ,
How are you?
I change the newscast to support my language Arabic.
but there is a problem only in ie browser
http://rehlat-world.com/example-ie6-problem
there is some text in right no appaer.
Hey,
After a bit of digging through the code, it looks like this is caused by the double padding bug as the #content element floats to the right. To fix this, open up style.css and around line 673 you'll find:
#content, .entry-no-pic .entry-content {
float: right;
margin: 0 0 0 20px;
overflow: hidden;
padding: 0 20px 50px 0;
}
Change it to:
#content, .entry-no-pic .entry-content {
float: right;
margin: 0 0 0 20px;
overflow: hidden;
padding: 0 10px 50px 0;
padding: 0 20px 50px 0 !important;
}
This should fix the bug, let me know how you get on.
James
wow great thanks Mr.Jemes
I change this 'content, .entry-no-pic .entry-content '
but nothing ..
then , I change this ' entry {} '
and Now It is good.
THANK YOU VERY MUCH
Hey,
It was going to be something similar if not the exact element I supplied the code for, glad you got it figured out.
James
You must log in to post.