Help with css – widgets

  • Unknown's avatar

    Hi I am working on customizing my site. I have had luck with finding solutions for most of what I wanted to change however there are 3 things I still need help with.

    1. I want to remove the border around the sidebar image of “about fatima”

    2. I want to remove the grey background around the caption of the sidebar image right below About fatima

    3. If i can, I want to change the font of the caption of the sidebar image as well

    The website I am asking about is freelyfatima.com and the theme is adelle

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    This should remove the border and background color on the sidebar image:

    .wp-caption{
        border: none !important;
       background-color: white !important;
    }

    This will change the font:

    .wp-caption-text{
        font-family: times new roman;
    }

    I picked a random font, but just replace “times new roman” with another standard font name and you should be set.

  • Unknown's avatar

    THANK YOU! it worked :)

  • The topic ‘Help with css – widgets’ is closed to new replies.