• My Canvas Theme got updated recently, but something changed:
    there used to be borders for the Sidebar Widgets, and no borders for Widgets in the Homepage and Widgets-page.
    Now borders just showed up everywhere, needless to say they look bad: Link to Homepage.
    I want back the theme as it has always been, what should I do?

Viewing 6 replies - 1 through 6 (of 6 total)
  • Has this issue been resolved, it looks like you have borders now.

    Thread Starter r4st4f4n

    (@r4st4f4n)

    There SHOULDN’T be borders in the body of my Homepage!

    Sorry, read it too fast.

    In your Child Theme or CSS Editor Plugin try this code:

    .widget {
        border: none;
    }

    *Note
    If your theme has a custom CSS Editor in it, you can also paste the code in there.

    Never edit core CSS or PHP files under Appearance > Editor. Your edits will be deleted when the theme is updated.

    Thread Starter r4st4f4n

    (@r4st4f4n)

    Thanks, but that removes every Widget border in the site, it’s not what I mean and can be easily done from theme configuration too.

    I want the borders for my sidebar Widgets, and in the html of my pages when I specify “Widget” as class.
    The ones that shouldn’t be there, and weren’t there before, are the ones in the body:
    https://i61.tinypic.com/io0u3d.jpg

    This is how it was looking before:
    https://i61.tinypic.com/2gtbsew.jpg

    Try this once:

    #text-3.widget.widget_text {
        border: none;
    }

    Thread Starter r4st4f4n

    (@r4st4f4n)

    This looks like a good hint, I had to change it a bit

    #text-5, #text-3, #av_latest_posts_widget-3, #text-15, #text-17, #av_latest_posts_widget-4, #text-14, #text-18, #av_latest_posts_widget-5, #text-16, #text-7, #archives-2 {
        border: none;
        margin: 0em;
    }

    It’s a bit long, but it seems working.
    Thank you

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘[Theme: Canvas] Update and Widget Borders’ is closed to new replies.