• Jonathan

    (@findkollegiedk)


    My site is: http://www.annoncering-bornholm.dk/

    I would like to make the text in the Feed Widget down in the footer less – but how do I do it?

    For now there is written the following in my .CSS

    . footer. widget_inner a {
         color: # fff;

    This is debt of all links in my footer, and therefore will the link to Facebook (to the left of Feed Widget) also changed, and I do not want that. So I must have written something in my. CSS that only applies to text in the Feed Widget.

    Hope you understand what I mean, and I look forward to hearing from you.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Sorry, but I’m not quite understanding what you want to do — do you ONLY want to change the size on the right hand footer widget text? Or did something already change?

    Thread Starter Jonathan

    (@findkollegiedk)

    Yeah exactly. I only want to change the size on the right hand footer widget text 🙂

    Okay, this should do it:

    .footer ul li a.rsswidget {
       font-size: 10px;
    }

    Obviously, use whatever size you want…

    Also, be aware that making changes in theme files is not recommended – you should use a Child Theme or custom CSS option/plug-in instead so that your changes won’t be erased when your theme is updated.

    Thread Starter Jonathan

    (@findkollegiedk)

    I have inserted it, but unfortunately it does not seem to change.

    You put it inside the media queries CSS code — this is another reason to use a custom CSS option. Please take the time now to set it up correctly — install a plug-in for custom CSS. You are creating many problems for yourself down the road by editing theme files.

    .content-bar img {
            max-width:292px;
            height:auto;
        }
        .footer ul li a.rsswidget {
            font-size: 13px;
        }
    }

    The above is what you have — your code must go below the last bracket:

    .content-bar img {
            max-width:292px;
            height:auto;
        }
    }
    
    .footer ul li a.rsswidget {
            font-size: 13px;
        }

    Thread Starter Jonathan

    (@findkollegiedk)

    Okay. I have now inserted it into my custom CSS, and it works.

    Thank you a lot for your help!

    Yay! Good job – believe me, you’d be really bummed to update your theme and lose a lot of work. People post on here all the time about having done that and they’re not happy at all (understandably). So now you’re safe which is much better than sorry :).

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Smaller text size in Footer’ is closed to new replies.