• I’ve read through and tried at least four different solutions to changing the width of the Calendar and Event List, but none of them have worked for me thus far.

    My site: http://www.WET-LLC.org/
    Calendar: http://www.wet-llc.org/category/events/month
    Event List: http://www.wet-llc.org/category/events/

    As you can see the Calendar and Event list are spilling across my right sidebar.

    After creating the new “events” directory in my Magazine Basic theme folder, I tired enclosing the div tags within a table.

    <table width=”778px” align=”center”><tr><td>
    <div id=”tec-content” class=”grid”>
    …..

    </div>
    </td></tr></table>

    I also tried css styling.

    Replace this
    <div id=”tec-content” class=”upcoming”>

    With this
    <div id=”main” class=”clear”>
    <div id=”content”>
    <div id=”tec-content” class=”upcoming”>

    </div></div></div>

    Neither have worked for me yet. My site width is 800px. Could someone please provide a new solution to downsize my Calendar and Event List into the alloted space?

    Thank you.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Try editing width in the Calendar’s CSS:
    http://www.wet-llc.org/wp-content/plugins/the-events-calendar/resources/events.css

    .category-events #tec-content {
    background:#fff;
    width:670px;
    padding:1px 35px;
    margin-left:10px;
    }

    Instead of editing plugin’s CSS files, you’d better copy the following code to your theme’s CSS file:

    .category-events #tec-content {
    background:#fff !important;
    width:670px !important;
    padding:1px 35px !important;
    margin-left:10px !important;
    }

    Modify what you need, but don’t remove the “!important” part… It allos you to overwrite default styles…

    moreinstore

    (@moreinstore)

    mrc2407 – I’ve tried inserting that code into my CSS, but nothing changes. Is there a specific place I have to enter it? Thanks! 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: The Events Calendar] Changing width with Theme Magazine Basic’ is closed to new replies.