1

how to replace the "+" and "-" sign and replace it with css background-image. here is the sample code http://jsfiddle.net/9nxAc/

Thanks

0

2 Answers 2

1

To make them images, simply change out the variables:

    closedSign: '[+]',
    openedSign: '[-]'

To..

    closedSign: '<img src="link/to/image.jpg" />',
    openedSign: '<img src="link/to/next/image.png" />'

jsFiddle

Sign up to request clarification or add additional context in comments.

Comments

0

You may use this method:

ul.topnav span{
    float:right;
    background-image:url('background.png');
    text-indent: -9999px;
}

By doing so the signs won't be visible.​

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.