Forum


The developer takes a few days off for Summer vacation...
...and will be back with charged battery!

From 14 June to 29 June, 2025 included
During this period,
assistance from developer will not be provided.

NEWS: iCagenda 4.0.0-alpha1 will be available for testing for users with a PRO subscription in July!

× Help Forum English

[SOLVED] How to change font size on All Events page

  • geleg
  • Autore della discussione
  • New Member
  • New Member
Di più
12 Anni 7 Mesi fa - 12 Anni 7 Mesi fa #1189 da geleg
Hi, how can I change the font size on "All Event" page? The date and title font size is too big. Thanks for your help. :silly:
Ultima Modifica 12 Anni 7 Mesi fa da Lyr!C. Motivo: [SOLVED]

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • Lyr!C
  • Avatar di Lyr!C
  • Administrator
  • Administrator
  • Lead Developer
Di più
12 Anni 7 Mesi fa - 12 Anni 7 Mesi fa #1193 da Lyr!C
Risposta da Lyr!C al topic How to change font size on All Events page
iCagenda is using the <h2> tags of your template.

You can change this number in the icmodel.php, but in futures releases (a few steps in developement), i will add more options for that, and will add this in template css of iCagenda.

So, you have two options :
- change H2 tags in icmodel.php (but you will have to do so for all next update of iCagenda)
- wait that i have implemented this options in css files of iCagenda themes (i'm making a Themes management for iCagenda B) (planned for 1.3 version))

Thanks for your patience !

Latest version : iCagenda 3.9.11
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

File allegato:

Ultima Modifica 12 Anni 7 Mesi fa da Lyr!C.
Ringraziano per il messaggio: geleg

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • geleg
  • Autore della discussione
  • New Member
  • New Member
Di più
12 Anni 7 Mesi fa #1195 da geleg
Risposta da geleg al topic How to change font size on All Events page
when will be Version 1.3 be released?

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • geleg
  • Autore della discussione
  • New Member
  • New Member
Di più
12 Anni 7 Mesi fa #1197 da geleg
Risposta da geleg al topic How to change font size on All Events page
I changed in icmodel.php the H2 to H3...but nothing changed..any idea?

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • Lyr!C
  • Avatar di Lyr!C
  • Administrator
  • Administrator
  • Lead Developer
Di più
12 Anni 7 Mesi fa #1198 da Lyr!C
Risposta da Lyr!C al topic How to change font size on All Events page

geleg ha scritto: I changed in icmodel.php the H2 to H3...but nothing changed..any idea?


Which line did you changed ?

Latest version : iCagenda 3.9.11
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

File allegato:

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • geleg
  • Autore della discussione
  • New Member
  • New Member
Di più
12 Anni 7 Mesi fa #1199 da geleg
Risposta da geleg al topic How to change font size on All Events page
in line 320 to 328

$report='';$report2='';$report3='';$report4='';
if ($nbevents==1) {
$report.= '<h2> '.$timetitle.' <br/></h4> <small> '.JText::_( 'COM_ICAGENDA_ONE_EVENT_TEXT' ).' '.$total.' '.$timetext1.' </small>';
}
if ($nbevents==0) {
$report.= ' <h2> '.$timetitle.' <br/></h2><small> '.$noevt.' </small>';
}
if ($nbevents>1) {
$report.= ' <h2> '.$timetitle.' <br/></h2><small> '.JText::_( 'COM_ICAGENDA_EVENTS_TEXT' ).' '.$total.' '.$timetext.' </small>';

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • Lyr!C
  • Avatar di Lyr!C
  • Administrator
  • Administrator
  • Lead Developer
Di più
12 Anni 7 Mesi fa - 12 Anni 7 Mesi fa #1200 da Lyr!C
Risposta da Lyr!C al topic How to change font size on All Events page
Ok! (i don't see ant H3, but an open h2 and a closed h4, that can't work...)

So, without a link to your website, i can't do nothing.

Please, use a css inspector (as firebug) as it may be in your site template that you will find the h2 and h3

Good Luck ! B)

Latest version : iCagenda 3.9.11
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

File allegato:

Ultima Modifica 12 Anni 7 Mesi fa da Lyr!C.

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • geleg
  • Autore della discussione
  • New Member
  • New Member
Di più
12 Anni 7 Mesi fa #1201 da geleg
Risposta da geleg al topic How to change font size on All Events page
i saw that mistake..have already changed to /H2 but still not working

Si prega Accedi o Crea un account a partecipare alla conversazione.

  • geleg
  • Autore della discussione
  • New Member
  • New Member
Di più
12 Anni 7 Mesi fa #1202 da geleg
Risposta da geleg al topic How to change font size on All Events page
have changed again to h4...no changes at all

$report='';$report2='';$report3='';$report4='';
if ($nbevents==1) {
$report.= '<h4> '.$timetitle.' <br/></h4> <small> '.JText::_( 'COM_ICAGENDA_ONE_EVENT_TEXT' ).' '.$total.' '.$timetext1.' </small>';
}
if ($nbevents==0) {
$report.= ' <h4> '.$timetitle.' <br/></h4><small> '.$noevt.' </small>';
}
if ($nbevents>1) {
$report.= ' <h4> '.$timetitle.' <br/></h4><small> '.JText::_( 'COM_ICAGENDA_EVENTS_TEXT' ).' '.$total.' '.$timetext.' </small>';

Si prega Accedi o Crea un account a partecipare alla conversazione.

Moderatori: Lyr!C
Tempo creazione pagina: 0.156 secondi

Follow Us

Create your Joomla templates with Template Creator CK

acymailing logo new