Posted: August 19, 2014 at 8:45 am
|
Wordpress, EE3 and Calendar are all current versions. URL is http://www.nex21publications.com/ipaint. In Calendar Settings, Advance Settings, Formatting I changed the values in the Button Text as follows: The Current Month button displays correctly, but the previous and next buttons are both still arrows. This is the last thing I need to do to finish this job. Please help! |
|
It’s caused by Themeroller being active in the EE Template Settings page. If you would like to disable it on the calendar page, but leave themeroller active on the rest of the site, you can delete line 397 from plugins/espresso-calendar/espresso-calendar.php: $ee_calendar_js_options['theme'] = ! empty( $org_options['style_settings']['enable_default_style'] ) && $org_options['style_settings']['enable_default_style'] == 'Y' ? TRUE : FALSE; |
|
I turned Themeroller off just to see what would happen. It’s not that bad. What is the quick and easy way to customize the button colors, the font size of the Month Title and make the grid outline darker? I have read some of the documentation on this and I am a little intimidated. I appreciate any help you can provide! Liz |
Hi, You can inspect any page on your site using a tool like Firebug or Chrome Developer Tools to see the CSS that is in use. Then you can add new CSS to your child theme’s stylesheet or a plugin like My Custom CSS or Reaktiv CSS builder to override the styles. Here is an example that will make the calendar headings darker: #espresso_calendar .fc-day-header { padding: 5px 0; font-weight: bolder; } This CSS will make the grey lines darker: .ui-widget-content { border: 1px solid #bbb; background: #eeeeee url(images/ui-bg_highlight-soft_100_eeeeee_1x100.png) 50% top repeat-x; color: #333333; } #espresso_calendar table.fc-border-separate td { border-top: 1px solid #bbb !important; } — |
|
|
Thanks Lorenzo, I’ll give it a shot! |
Hi, Be sure to also force refresh so that you browser loads the new CSS changes: http://en.support.wordpress.com/browser-issues/#force-refresh — |
|
|
Yes, I learned the refresh trick the hard way! I have a few hang-ups, I cannot seem to isolate the right CSS class or id to make the entire tooltip background white or to make the fc-today and fc-month backgrounds transparent. I also want to customize the text and border of the tool tip Register button. I really appreciate your help. Liz |
|
Hi, For the background, this should work: .qtip .ui-widget-content { background: #fff; } If you want to make all those button transparent you can use: span.fc-button { background: transparent; } This controls the tooltip register now text and the border: a.ui-state-active.reg-now-btn {} |
|
Right now I have been working with the Themeroller turned off, but I need the formatting it provides for the registration page and other elements. If I modify the espresso-calendar.php file as suggested above, what happens when there is an update? “you can delete line 397 from plugins/espresso-calendar/espresso-calendar.php”. Again, I greatly appreciate your help! |
|
Hi, Anything deleted from a core file such as espresso-calendar/espresso-calendar.php will be added back on update. CSS will not be affected if added to the themes style.css (until the theme is updated), a child themes style.css or a plugin such as My Custom CSS (very useful plugin). |
The support post ‘EE3 Calendar Advanced Settings Cannot Put Text in Prev/Next Buttons’ is closed to new replies.
Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.