Forum Replies Created

Viewing 2 replies - 16 through 17 (of 17 total)
  • plucky: I noticed this recently, too. The problem actually resides in the themes CSS file (style.css). Look in the “Begin Structure” section of the file for:


    #footer {
    padding: 0 0 0 1px;
    margin: 0 auto;
    width: 760px;
    clear: both;
    }

    Simply remove or change the ‘padding’ line to read:


    padding: 0;

    That did the trick for me.

    Thread Starter gruv

    (@gruv)

    I hope I didn’t waste anyone’s time trying to figure this out, but I was able to get it to work by simply reviewing LiveCalendar’s code a little more closely.

    In the ‘kcalendarscript.php’ file, I noticed that instead of an ID, ‘today’ was made a class. My stylesheet needed to be:

    #wp-calendar .today {
    font-weight: bold;
    }

    I’m posting this here in case anyone else runs into this similar situation.

Viewing 2 replies - 16 through 17 (of 17 total)