Hi
I have messed around with this for a good hour and eventually got my blockquotes consistent accross FF, Chrome and IE, problem is that on my mobile browser they are wrong can anyone shed any light on where I am going wrong?
Here is a pic of what is happening:
Here is my code:
HTML
Code:
<blockquote>
A service that doesn't cost the Earth
</blockquote>
CSS
Code:
blockquote {
font-family: Georgia, serif;
font-size: 18px;
font-style: italic;
width: 335px;
position: relative;
color: #4389ad;
left: 310px;
word-spacing: 2px;
margin: 0;
padding-top: 5px;
padding-right: 15px;
padding-bottom: 5px;
padding-left: 20px;
}
blockquote:before {
display: block;
content: "\201C";
font-size: 30px;
position: absolute;
float:left;
left: -5px;
top: -3px;
color: #4389ad;
}
blockquote:after {
display: block;
content: "\201D";
font-size: 30px;
position: absolute;
left: 327px;
top: -3px;
color: #4389ad;
}
Here is the site:
http://www.ecofrost-uk.com
Thanks in advance, it's driving me crazy