Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Frumph

    (@frumph)

    This question is not for the Comic Easel plugin, but rather the Easel theme maybe?

    If it’s for the theme, toss your widgets into the footer, and do this with the css

    #sidebar-footer .sidebar .widget {
        width: 198px;
        float: left;
        margin-right: 2px;
    }

    See what I did there? I put a float on the container for the widget and gave it a specific width, so when you toss a widget in there they will all float left and line up next to each other, adjust the width: accordingly.

    Thread Starter VinceCC

    (@vincecc)

    Thanks Frumph.

    You’re right… it’s the theme. I don’t know why I was directing people to the plugin page.

    Anyways… for the life of me, I can’t figure out where to put that coding.

    I’ve tried adding it in various sections in the css file and nothing seems to be working.

    If you’d like to see what I’m referring to please go to https://together-we-can-do-it.info and look at the footer section. I would like 3 columns and I understand what you’re trying to convey, but I’m not very good at understanding coding. Do I replace something? or do I just add the code somewhere?

    I’m just starting this site and this theme is the one I’m sticking to regardless of the footer section. I love it. I just have one other issue with one of my pages not showing up, but that’s due to a plugin I’m using and I’m monitoring the support on that issue.

    Plugin Author Frumph

    (@frumph)

    okay, 325px each column for the 980px width in the footer

    So .. go to appearance -> editor and click on the style-default.css file to edit, then scroll down to they VERY VERY bottom and put this in:

    #sidebar-footer .sidebar .widget {
        text-align: left;
        width: 325px;
        float: left;
        margin-right: 2px;
        display: inline-block;
    }

    Then click save.

    Plugin Author Frumph

    (@frumph)

    If you look at https://comiceasel.com/ down in the footer, that’s kind of how I did it there

    Thread Starter VinceCC

    (@vincecc)

    You have exactly what I’m looking for.

    I copied and pasted as per your instructions and I’m still stuck with the rows instead of columns. I’m not sure why this is being so fussy considering it seems to be a fairly easy fix.

    I wonder if this is now becoming a plugin issue rather than a theme issue *shrug*

    Plugin Author Frumph

    (@frumph)

    Try #footer, instead of #sidebar-footer

    #footer .sidebar .widget {
        text-align: left;
        width: 325px;
        float: left;
        margin-right: 2px;
        display: inline-block;
    }
    Thread Starter VinceCC

    (@vincecc)

    That was perfect. You hit the nail on the head with that code.

    I guess now all I need are banners for your site ??

    Youve been a great help and as mentioned in an earlier message, Im in love with this theme and would highly recommend it.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘[Plugin: Comic Easel] Footer settings’ is closed to new replies.