Forum Replies Created
-
AuthorPosts
-
OK, I will try to explain it another way.
I use the FullCalendar plug-in, and the default background of the header above the calendar is white – this doesn’t match my Enfold custom theme styling. So, I use some custom CSS to change this background to match that of the enfold theme background of the page where the calendar is instantiated.
I use the following CSS code, where the #f8f8f8 is the colour specified by my Enfold theme-styling Main Content Background color.
.fc-header-left {
background-color: #f8f8f8 !important;
}This works great. Now, if I decide to change my Enfold theme styling color in the Enfold settings tab, from #f8f8f8 to say #e0e0e0, then I would need to remember to also manually change the colours specified my custom CSS file from #f8f8f8 to #e0e0e0.
So, the question is, can I reference the Enfold theme styling colour/variable/definition directly? E.g. to change my CSS to something like….
.fc-header-left {
background-color: $get_enfold_alt_back_color !important;
}As this way, any theme styling change made in the Enfold theme-tab, would automatically propgate to any custom changes I’ve made in the custom CSS.
Thanks
Thank you Ismael. That fixes the problem. There a few other style issues, but hopefully I will be able to sort those out.
Thanks.
September 26, 2013 at 4:59 pm in reply to: ISSUE: Icon List Renders Q as O or cuts off the Tail Page #166698I had a similar problem with the iconbox which I solved with :
.iconbox_content_title {
padding-bottom:2px !important;
}Should be something similar for iconlist. Maybe:
.iconlist_content {
padding-bottom:2px !important;
}You can also just add [nolink] to the end of your copyright line under Theme Options -> Footer
Ok, thanks.
Hi Devin,
Thats what I initially thought, and so was going to add it to my child theme css, but when I searched the theme css file, I found it referenced in grid.css. But I guess it may not be being processed elsewhere in the PHP files?September 18, 2013 at 11:20 am in reply to: Enfold google map widget and Custom-Facebook-Feed clash? #162860Thank you for the suggestion. When I went to try this, I noticed a update to the custom-facebook-feed plug-in for a javascript error – v1.5.2. After updating the plug-in, it seems to have fixed it.
Presumably, the update was to do a similar fix?!!Thank you anyway!
September 17, 2013 at 9:12 am in reply to: Enfold google map widget and Custom-Facebook-Feed clash? #162132Ok. Done that
September 17, 2013 at 12:28 am in reply to: Enfold google map widget and Custom-Facebook-Feed clash? #161974Thanks for the quick reply.
The map image is displaying correctly on http://www.assc.org.uk/contact-us/.
The facebook plug-in is currently disabled in the right sidebar at http://www.assc.org.uk/
-
AuthorPosts