Easy PHP Calendar - We really take care of your dates!


Go Back   Easy PHP Calendar > General Discussion > Customizations (Themes / Templates)

Customizations (Themes / Templates) Help with customizing the themes and templates. Post your own custom themes for others to enjoy.

Closed Thread
 
Thread Tools Search this Thread Display Modes

TOC Instance on WP Blog Formatting Columns in Unusual Way
Old 09-06-2009, 09:09 PM   #1
DavisShaver
Calendar User
 
DavisShaver is offline
Join Date: Sep 2009
Posts: 1
Default TOC Instance on WP Blog Formatting Columns in Unusual Way

Hi all,

I'm trying to set up the calendar on my WordPress blog, but the columns in the TOC instance are appearing sloppy... how can I regulate column width?

Here's a picture of what it looks like:

Here is what the relevant TOC code in my ESSstyle.css instance includes:
PHP Code:
.mainTableTOC {
    
background-color#FFFFFF;
    
border1px solid #BBBBBB;
    
width700x;
    
table-layoutfixed;
 }

.
navTableTextTOC {
    
font-familyGenevaVerdanaArialsans-serif
    
font-size9px
    
font-weightNormal;
    
text-decorationnone;
    
color#003366;
    
}

/* Month and Year Row Setup */
.monthYearRowTOC {
    
height32px;
    
background-color#FEFFFE;
    
text-alignleft;
    
vertical-alignmiddle;
    
margin0px;
    
padding6px;
    }

/* Month and Year Text Setup */
.monthYearTextTOC {
    
font-familyGenevaVerdanaArialsans-serif;
    
font-size18px;
    
font-weightBold;
    
color#355881;
    
}

/* Day Names Row Setup */
.dayNamesRowTOC {
    
height20px;
    
background-color#455678;
    
text-aligncenter;
    
vertical-alignmiddle;
    }

/* Day Name Setup */
.dayNamesTextTOC {
    
font-familyGenevaVerdanaArialsans-serif
    
font-size10px
    
font-weightBold
    
color#FFFFFF;
    
}

/* Alignments, Font Face, Size and Color for Date Numbers and Row Height */
.rowsTOC {
    
font-familyArialGenevaVerdanasans-serif;
    
font-size10px;
    
color#433D27;
    
text-alignleft;
    
vertical-aligntop;
    
height88px;
    }

/* Color of Today's Date */
.todayTOC {
    
font-familyGenevaVerdanaArialsans-serif;
    
font-size11px;
    
font-weightBold
    
color#FFFF00;
    
background-color#31528E;
    
text-alignleft;
    
vertical-aligntop;
    
padding2px;
    
margin0px;
    }

.
titleTOC {
    
text-overflow:ellipsis;
    
overflow:hidden;
    
white-space:nowrap;
    
padding1px;
    
margin0px;
    }

.
daynumTOC {
    
font-familyGenevaVerdanaArialsans-serif;
    
font-size11px;
    
font-weightBold
    
color#FBFCEF;
    
background-color#A2A3AE;
    
text-alignleft;
    
vertical-aligntop;
    
padding2px;
    
margin0px;
    }

.
formElements {
    
font-familyVerdanaArialHelveticasans-serif;
    
font-size10px;
}
.
formButtons {
    
font-familyVerdanaArialHelveticasans-serif;
    
font-size10px;
}
.
sOtherTOC {
    
background-color#EEEEEE;
    
font-familyGenevaVerdanaArialsans-serif;
    
font-size10px;
    
color#BBBBBB;
    
vertical-aligntop;
    }
.
s20TOC {
    
background-color#F7F7F7;
    
height88px;
    
vertical-aligntop;
    }
.
s20TOC0 {
    
background-color#D4D4D4;
    
height88px;
    
vertical-aligntop;
    } 
Here is how I am calling for the instance through the WordPress page template:
PHP Code:
<div id="calendar">
<?php
$TOC
=1;
require(
"calendar/calendar.php");
?>
Here is the relevant code from my main style sheet:
PHP Code:
#calendar {
margin-top:30px;
margin-bottom:100px;
margin-left:20px;
floatcenter;
table-layoutfixed;


Thanks for your help. Please let me know if there's any other information I could provide!
Attached Thumbnails
Click image for larger version

Name:	TOC_Instance.jpg
Views:	621
Size:	12.6 KB
ID:	396  
 

Old 09-06-2009, 09:27 PM   #2
ve9gra
Support Team
 
ve9gra's Avatar
 
ve9gra is offline
Join Date: Jun 2003
Location: New Brunswick, Canada
Posts: 4,969
Default

Without a link to your installation, I can't verify ways to fix it. You can give this a try - https://www.easyphpcalendar.com/supp...cleid=18&nav=0
__________________
-- Gervais
EPC Tutorials... We're here to help!
Offering custom integration services. Contact me here.
* Not affiliated with EasyPHPCalendar or NashTech Inc.
 

Old 09-07-2009, 11:32 AM   #3
Outlaw54
Calendar User
 
Outlaw54 is offline
Join Date: Sep 2009
Posts: 5
Default

Quote:
Originally Posted by ve9gra View Post
Without a link to your installation, I can't verify ways to fix it. You can give this a try - https://www.easyphpcalendar.com/supp...cleid=18&nav=0
Here is your link. I work with Davis on this...little stumped. Tried your method and nothing happened.

http://onwardstate.com/events-calendar/
 

Old 09-07-2009, 11:46 AM   #4
Brian
EPC Developer
 
Brian's Avatar
 
Brian is offline
Join Date: Jun 2001
Location: Florida, USA
Posts: 10,907
Default

I tried pulling up your page, but I don't see the calendar?
__________________
-- Brian

Questions?

Instructions | FAQs | Errors FAQ | Forums | Support
| Web Site Hosting
 

Old 09-07-2009, 11:58 AM   #5
Outlaw54
Calendar User
 
Outlaw54 is offline
Join Date: Sep 2009
Posts: 5
Default

Quote:
Originally Posted by Brian View Post
I tried pulling up your page, but I don't see the calendar?
Hmm..that is odd it should be there...I think I may have fixed the problem...with the edits we were making, we were not getting any results. I just checked the wordpress page templates and noticed that there were 2 calendar.php pages. The 2nd one was our actual calendar but I believe that the edits we were making were changing the 1st one and not the second.

I am hoping that is it anyways. Who would of thought going to sleep would help me realize that after looking at it all night
 

Old 09-08-2009, 09:36 AM   #6
Outlaw54
Calendar User
 
Outlaw54 is offline
Join Date: Sep 2009
Posts: 5
Default

Hopefully this is a little bit more of a challenging question than user error like last time...using the same link as before, if you highlight the event, you see the pop up. In between the date and the title is a little transparency. I was wondering if there was any way to remove that gap and actually just have the event date go right on top of the event title.

http://onwardstate.com/events-calendar/
 
Closed Thread

Tags
column width, columns, toc, wordpress

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
TOC Title formatting eclipsme1 Customizations (Themes / Templates) 3 03-07-2009 08:02 AM
Making TOC calendar work in Blog layout soopamack Customizations (Themes / Templates) 1 09-12-2008 02:50 PM
Blog and TOC???? Dickens General Support 1 11-28-2005 09:44 PM



All times are GMT -4. The time now is 05:10 AM.


vBulletin skins developed by: eXtremepixels
Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Copyright 2009 NashTech, Inc.

| Home | Register | Today's Posts | Search | New Posts |