Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Calendar Font size - where?

Asked Modified Viewed 3,515 times
C
Catzenjaeger
C
  • Senior Member, joined since
  • Contributed 408 posts on the community forums.
  • Started 137 threads in the forums
  • Started this discussions
asked
Senior Member

Hello,

i need some help again wirth my calendar. I have mod the css file of my theme but what i missing is the parameter for set the size of month. ATm is all fine only the month will be show to big

where can i set it?

i58.tinypic.com/v2y3pk.jpg


PS: i guess its a IE problem well in Firefox ist perfect !!!
Edited by Catzenjaeger on 14-02-2014 15:22,
0 replies

11 posts

C
Craig
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
answered
Fusioneer

Code please?
0 replies
C
Catzenjaeger
C
  • Senior Member, joined since
  • Contributed 408 posts on the community forums.
  • Started 137 threads in the forums
  • Started this discussions
answered
Senior Member

upps :)

here the css code snipplet (comes to theme.php)

/* AB HIER EINSTELLUNGEN FÜR KALENDER*/


table.awec_calendar th {      /* table head: day of the week */
   font-size: 11px;   
   font-weight: bold;
   background-color: #EAEAEA;
   border: 1px solid #bbb;
}
table.awec_calendar td.content {   /* day with some events */
   background-color: red;      /* wenn komplett rot background dann diese freischalten und in rot und die andere deaktiveren*/
   /border: 1px solid red;
   
}
table.awec_calendar td.current {   /* current day */
   background-color: yellow;

}

table.awec_calendar td.empty {      /* day with no events */
   background-color: #EAEAEA;
   border: 1px solid #bbb;
}

table.awec_calendar td.weekend {   /* weekend */
   font-weight: bold;
   background-color: #D7D7D7;
   border: 1px solid #bbb;
}

/* analogous for the list view except it is using rows instead of cells */
table.awec_list tr.odd {
   border: 1px solid #bbb;
}
table.awec_list tr.even {
   border: 1px solid #bbb;
}
table.awec_list tr.current {
   background-color: yellow;
}

/* boxover */
.awec_bo_head {
        background-color: #E8E9E8;
        background-color: #E8E9E8;
        padding: 4px;
}

.awec_bo_body {
        background-color: #E8E9E8;
        background-color: #E8E9E8;
        padding: 4px;
}
.awec_bo_body ul {
        margin: 0;
        padding-left: 10px;
}

/* HIER EINSTELLUNGEN FÜR KALENDER ENDE*/
Catzenjaeger attached the following file:
aw_ecal_panel_1.zip [No information available / 246 Downloads]
0 replies
C
Craig
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
answered
Fusioneer

Also send calendar.php please?
0 replies
C
Catzenjaeger
C
  • Senior Member, joined since
  • Contributed 408 posts on the community forums.
  • Started 137 threads in the forums
  • Started this discussions
answered
Senior Member

lol - and i search and search :) but was in the wrong file
Catzenjaeger attached the following file:
calendar.zip [No information available / 243 Downloads]
0 replies
C
Craig
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
answered
Fusioneer

Maybe common.php, look this would be sooo much easier for us if you could show me this on your site? I mean if I can get on your site I can inspect the element using a debugger. Link or no? I think your site is internal only rite? Any chance I can get in? Would be sooooooo much easier for us mate.
0 replies
C
Catzenjaeger
C
  • Senior Member, joined since
  • Contributed 408 posts on the community forums.
  • Started 137 threads in the forums
  • Started this discussions
answered
Senior Member

i send your the link (the site is not internal atm - no prob but not for the community)

here a pic what i mean

i62.tinypic.com/nld4eq.jpg
0 replies
C
Craig
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
answered
Fusioneer

Sure, send me the link please?
0 replies
C
Catzenjaeger
C
  • Senior Member, joined since
  • Contributed 408 posts on the community forums.
  • Started 137 threads in the forums
  • Started this discussions
answered
Senior Member

ok here the complette panel from my infusions folder
Catzenjaeger attached the following file:
aw_ecal_panel_2.zip [No information available / 229 Downloads]
0 replies
C
Craig
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
answered
Fusioneer

OK try this awe_calendar_panel.php find...

$title = str_repeat(' ', max((20-strlen($cur_title))/2, 3)-3)
.'<a href="'.$href.'y='.$pyear.'&amp;m='.$pmonth.'">&lt;&lt;</a> <a href="'.$path.'/index.php?y='.$ec_year.'&amp;m='.$ec_month.'">'.$cur_title.'</a> <a href="'.$href.'y='.$nyear.'&amp;m='.$nmonth.'">&gt;&gt;</a>';


Change to this...

$title = str_repeat(' ', max((20-strlen($cur_title))/2, 3)-3)
.'<span style="font-size: 10px;"><a href="'.$href.'y='.$pyear.'&amp;m='.$pmonth.'">&lt;&lt;</a></span> <span style="font-size: 10px;"><a href="'.$path.'/index.php?y='.$ec_year.'&amp;m='.$ec_month.'">'.$cur_title.'</a></span> <span style="font-size: 10px;"><a href="'.$href.'y='.$nyear.'&amp;m='.$nmonth.'">&gt;&gt;</a></span>';
0 replies
C
Catzenjaeger
C
  • Senior Member, joined since
  • Contributed 408 posts on the community forums.
  • Started 137 threads in the forums
  • Started this discussions
answered
Senior Member

works fine - thanx mate - you are my fusion-hero :)
0 replies
C
Craig
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums
answered
Fusioneer

No problem, your welcome! :G
0 replies

Category Forum

Panels and Infusions

Labels

None yet

Statistics

  • Views 0 views
  • Posts 11 posts
  • Votes 0 votes
  • Topic users 2 members

2 participants

C
C
  • Senior Member, joined since
  • Contributed 408 posts on the community forums.
  • Started 137 threads in the forums
  • Started this discussions
C
C
Craig 14
  • Fusioneer, joined since
  • Contributed 4,462 posts on the community forums.
  • Started 212 threads in the forums

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet