Forums

Read More link - align right in CSS ?? (4 posts)

  1. ka81
    Member
    Posted 3 weeks ago #

    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">&raquo; &raquo; &raquo; &raquo;</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??

  2. esmi
    Member
    Posted 3 weeks ago #

    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

  3. ka81
    Member
    Posted 3 weeks ago #

    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? :)

  4. esmi
    Member
    Posted 3 weeks ago #

    It's simply not supported by most browsers. Opera may the only browser that does support it.

Reply

You must log in to post.

About this Topic