HellO!
Please, help to align righr Read More link (quicktag more)
http://codex.wordpress.org/Customizing_the_Read_More
this is code from blogpage (http://x-files.net.ua/?cat=11):
<a href="http://x-files.net.ua/?p=1#more-1" class="more-link">» » » »</a></p>
</ul>
this is from css
.more-link {color:#344342; text-decoration:blink; font: italic 13px Arial; margin: 0; padding: 0; text-align:right;}
but it's still in the left under content.
when i put float:right it's became on right side, but a horizontal scroll appears in browser.
how to align it to right under content??
Try changing:
.more-link {
color:#344342;
font-family:Arial;
font-size:13px;
font-size-adjust:none;
font-stretch:normal;
font-style:italic;
font-variant:normal;
font-weight:normal;
line-height:normal;
margin:0;
padding:0;
text-decoration:blink;
}
to
.more-link {
color:#344342;
display:block;
font-family:Arial;
font-size:13px;
font-size-adjust:none;
font-stretch:normal;
font-style:italic;
font-variant:normal;
font-weight:normal;
line-height:normal;
margin:0;
padding:0;
text-align:right;
}
in style.css
thanx a lot!!!!
by the way - i'm using here an argument - text-decoration:blink;
it's working in Opera, and not working in IE 7.
maybe you know why can it be? :)
It's simply not supported by most browsers. Opera may the only browser that does support it.