• Resolved fawkesblog2

    (@fawkesblog2)


    I have styled my “next page” and “previous page” links so they have a black background matching my menu links.

    On the first page of the blog the “previous page” link does not appear of course but a think black line appears where it would be due to my styling the link for a black background.

    Is there a way of making that black background disappear from the front page of the blog.

    You can see at the bottom right here http://chrisfawkes.net/blog/the-blog/

    hanks guys.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Michael

    (@alchymyth)

    possibly move the formatting to the link and make it specific for the navigation;

    example:
    from:

    .alignright {text-decoration:none; margin: 1px;
    	padding: 2px 9px 3px 9px; color: #fff;
    	background:#000;
    }

    to:

    .navigation .alignright a {text-decoration:none; margin: 1px;
    	padding: 2px 9px 3px 9px; color: #fff;
    	background:#000;
    }

    helpful:
    http://getfirebug.com/
    http://www.w3schools.com/css/

    Thread Starter fawkesblog2

    (@fawkesblog2)

    That definitely works but then the links do not change color when i hover over them. Is there an additional bit of code i could add for that.

    Thank you for your help.

    Thread Starter fawkesblog2

    (@fawkesblog2)

    Ok got it working by adding another hash tag after #fff.

    So .navigation .alignright a {text-decoration:none; margin: 1px;
    padding: 2px 9px 3px 9px; color: #fff #;
    background:#000;
    }

    Thanks again.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Help me remove black spot from blog.’ is closed to new replies.