• Resolved alimann

    (@alimann)


    Hello all,

    I have this problem that i’ve been working on for last 2 weeks but apperently im too stupid to understand how it works.

    I have few widgets and from what i can see through firefox firebug, does widget got ID. which is important from what i could read.
    for ex. <li id= “wid-show-wordtube-4” class=widgetcontainer clearfix>
    That’s widget ID ? right ?

    now i have no idea where/how and what to do / edit / change so that i can input some kind of image on each of does widgets individualy.

    Now im desperat i dont know where else to turn then to wordpress community and preheps a good soul that wish to help me out.

    thanks a lot i will be hanging at this thread for next copple of hours just in case someone is out there and can help me out live.

    thanks a lot

Viewing 6 replies - 1 through 6 (of 6 total)
  • should be able to apply an image to that in the form of:

    #wid-show-wordtube-4 {
         background-image: url('images/image.gif');
    }

    where my example is calling an image named ‘image.gif’ from the images directory of your active theme

    This edit would be added to style.css in your theme

    (a URL to your site would help be more exact….but the above should work)

    Thread Starter alimann

    (@alimann)

    ok. link to site is the-enclave.net

    hmm let me try that ?? if this works you will be my hero

    Thread Starter alimann

    (@alimann)

    hmm when i did that it changed background of that 1 widget… It didnt change only title.

    OK, well

    #wid-show-wordtube-4 .widgettitle{
         background-image: url('images/image.gif');
    }

    would do the title for that widget

    .widgetcontainer .widgettitle {
         background-image: url('images/image.gif');
    }

    Would do ALL widget titles…

    if you look in your themes active stylesheet, which is currently:
    /css/styles/legacy.css

    You’ll see all your sidebar stuff defined in a section called:
    /* sidebar */

    An image is already applied to the titles….. you can edit the file there I would guess, or add your widget specific images

    Thread Starter alimann

    (@alimann)

    man i love you… no worries about that legacy.css

    i have user.css that overrides legacy.css so im doing all my changes there… but that did the trick ??

    THANK YOU SOOOOOO MUCH

    Cool… it’s hard for me to know how your theme works without installing it myself

    But I’m glad we could work through your issue!!

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘how to input image into widget title ?? please’ is closed to new replies.