Viewing 5 replies - 1 through 5 (of 5 total)
  • One file where? In what? Help is free but psychic costs extra.

    Thread Starter sharris203

    (@sharris203)

    Inove theme 1.4.5. In the img folder there is an icons.gif with all the icons in one single file. What is the best way to change them?

    Check your .CSS, if all icons are in one gif (one icon under the other) he is using the background-position: class in CSS to display whatever icon he wants.

    For example: If you have ten 16×16 icons then the icons.gif should be of 16px width and 160px height.

    Say you want to display the third icon, the CSS will look something like this:

    #icon {
    background: url(..images/icons.gif) no-repeat;
    background-position: 0 -48px;
    }

    Hope that helps

    Sorry, I think that code actually displays the fourth icon 🙂

    1st icon : no background-position change
    2nd icon : -16px
    3rd icon : -32px
    4th icon : -48px

    .. etc

    You get the point

    Thread Starter sharris203

    (@sharris203)

    thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How do I change icons (bullets, calendar, author, etc)?’ is closed to new replies.