• Resolved aristeajoy

    (@aristeajoy)


    I have 2 issues and I’m wondering if there is some custom CSS that will fix them. First, the jumpbox doesn’t fit well in the header. It makes the whole header look askew. If I remove the jumpbox the header looks fine.

    Second, the individual calendar days are rectangular shaped. In your images they all look square. Is there a way for me to adjust the calendar so that it is not squashed.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Spiffy Plugins

    (@spiffyplugins)

    Your theme has set the width of a select box to 100%. You can adjust this for the calendar by adding the following CSS rule:

    .calendar-date-switcher select {
        width: auto;
    }

    The height of the calendar day boxes is determined by the content inside. The base size is 60px but you can bump it up by using the following rule:

    td.day-without-date, td.day-with-date {
        height: 100px;
    }
    Thread Starter aristeajoy

    (@aristeajoy)

    You made my day! Thank you for the quick response!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Jumpbox size’ is closed to new replies.