Sidebar/Links bold, graphic missing

  • Unknown's avatar

    Hello,

    I have the custom upgrade of the Matala theme. For some reason my “links” in my links widget are all bold and the graphic under the title of my widgets is missing. I’ve done everything I can think of and can’t fix it.

    Any help is appreciated, thanks,

    Heart

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

  • Unknown's avatar

    In your custom CSS you have this:

    a {
    color:#0B3861;
    font-weight:bold;
    text-decoration:none;
    }

    The “font-weight:bold” part of that block makes all links bold unless they are styled by a more specific rule later to make them not bold. Remove that rule to make the links have a normal font weight.

    In your custom CSS, you have this:

    .widget-title {
    background:url('images/bg-widget-title.gif') no-repeat;

    When you use url() in the custom CSS editor, then you must put a complete URL inside of that function starting with http://

    It appears you copy and pasted the entire original stylesheet into your custom CSS editor. That makes some things break (which you can see). Instead of doing that, you should just copy in CSS for things you’d like to change instead of the entire original theme stylesheet.

  • Unknown's avatar

    Thanks so much for this help.

  • The topic ‘Sidebar/Links bold, graphic missing’ is closed to new replies.