By Guest on Saturday, 11 June 2016
Replies 3
Likes 0
Views 2.7K
Votes 0
I like the geraint theme for displaying month views of a calendar for the navigation bar features. However I am finding that the prev/next month/year icons are not being display at a reasonable size, they are about 1 pixel in size.

This is using the "T3 BS3 Blank" template on Joomla 3.5 with JEvents 3.4.13.

I have found one solution to the issue which was to edit: components\com_jevents\views\default\helpers\defaultviewnavtablebariconic.php
and add class="iconic_td" to the html defined in _genericMonthNavigation function. ie at line 83


<td class="iconic_td" width="10" align="center" valign="middle"><?php echo $thelink; ?></td>


I expect I should do this as a proper layout customisation, so the change is not lost on next update of jevents. Are there instructions for how to do this? (The approach I have taken puts the arrow icons in the navigation table in cells that are too big but before I start changing things too much I want to do it properly).
Use CSS instead

e.g.

td.iconic_id {width:10px;}

Add it to your JEvents custom css file
·
Sunday, 12 June 2016 09:54
·
0 Likes
·
0 Votes
·
0 Comments
·
Many thanks for the steer, I have found this works ok in the custom css:


div.ev_navigation td{width:20px; padding:0; margin:0; vertical-align: middle}
·
Monday, 13 June 2016 20:06
·
0 Likes
·
0 Votes
·
0 Comments
·
Great news, thanks for letting us know.
·
Tuesday, 14 June 2016 00:01
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post