Adding an image to about link on homepage?

  • Unknown's avatar

    Is it possible to add an image to the about link on my homepage, in autofocus theme?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Certainly. There are a few different ways to do this. I would do it by adding a background image to the About page item, which is “” in your case.

    .menu .page-item-2 {
    background: url(http://s.wordpress.org/about/images/logos/wordpress-logo-32-blue.png) no-repeat;
    height: 32px;
    padding-left: 32px;
    }

    Change http://s.wordpress.org/about/images/logos/wordpress-logo-32-blue.png to your image URL. Change height and padding-left to match the height and width of your image.

    Note that I picked WordPress logo image as an example so you can get an idea for the changes you might make and that the 32px values will need to be updated to match whatever image you decide to use instead of the one in the example above.

  • The topic ‘Adding an image to about link on homepage?’ is closed to new replies.