copyright & fb buttons

  • Unknown's avatar

    is it possible to edit the copyright at the bottom of the page and add the grey social media buttons like in my other blog?

    HOME

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

  • Unknown's avatar

    a) Define “edit” please.

    b) On Portfolio those icons are built-in, I think. On Imbalance you need to find a set of icons you like, copy them to your computer, upload them to your blog via Media > Add New, copy the file URLs, and use Image widgets or one Text widget in one of the footer widget areas.

  • Unknown's avatar

    I mean in my other blog I have below this

    © 9th art wave

    can I have sth similar?

  • Unknown's avatar

    If you want it above the credits, the minimum you need is this:

    #site-info:before {
    content: "© 9th art wave";
    display: block;
    }

    You can add more rules, to make it bold like the credits, or change its color, size etc.
    If you want it below the credits, write “after” instead of “before”.
    It can also be on the same line as the credits, if you wish.

    To reduce the space below the divider line, add this and decease the value:

    #footer {
    padding-top: 30px;
    }
  • Unknown's avatar

    thanks, any way to take the wordpress info off, i assume that it does not exist…to make them smaller?

  • Unknown's avatar

    Removing the credits is very easy but it’s against the TOS – see #11:
    http://en.wordpress.com/tos/

    To make them smaller (and not bold) add this:

    #site-info {
    font-size: 10px;
    }
    #site-info a {
    font-weight: normal;
    }

    This will make your copyright notice smaller too, so you’ll need to add a font-size rule to my previous suggestion.

  • The topic ‘copyright & fb buttons’ is closed to new replies.