• Resolved Caprilli

    (@caprilli)


    I am trying to change a simple, single text widget heading on my site https://www.carlex.co.

    It is for the second widget heading ‘Carlex needs you!’ which I want white on red with curved corners like a button. But I would settle for upping the font size without affecting the rest of the widget titles.

    I have a child theme and this is the current css:

    .widget-title {
    color: #FF34B3;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 2.6em;
    text-transform: uppercase;
    }

    (Or is it just less hassle all round to put html direct into the widget?)

Viewing 4 replies - 1 through 4 (of 4 total)
  • you could try being really specific with your CSS.. (but mind you if you delete and re-create the widget the ID will change) with something like this:

    #text-11 .widget-title{
    color:#fff;
    background:red;
    border-radius:5px;
    text-align:center;
    font-size:13px;
    margin-bottom:10px;
    }

    then just add that to the bottom of your stylesheet ??

    Thread Starter Caprilli

    (@caprilli)

    That worked a treat, thanks.

    no problem ?? please mark topic as resolved

    Thread Starter Caprilli

    (@caprilli)

    That worked a treat, thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Change single side-widget heading on twenty eleven’ is closed to new replies.