This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Custom CSS
#1
Hello there,
Can somebody help me with custom CSS, to change color of the trend graphs from blue to matching green #00FF32
Thank you in advance.
Dawid

Attached Files Thumbnail(s)
   
Reply
#2
Add this to Custom JavaScript (not CSS):
Code:
if (window.Flotr) {
  Flotr.defaultOptions.colors[0] = '#00FF32'
}
Reply
#3
(18.03.2025, 11:02)admin Wrote: Add this to Custom JavaScript (not CSS):
Code:
if (window.Flotr) {
  Flotr.defaultOptions.colors[0] = '#00FF32'
}

Thank you very much Smile
May I ask for the code to change also color of date and highlighted day?
Thank you once again!

Attached Files Thumbnail(s)
   
Reply
#4
try this CSS
Code:
td.day.active {
  background-color: #00FF32 !important;
}
span.current {
  color: #00FF32 !important;
}
------------------------------
Ctrl+F5
Reply
#5
(18.03.2025, 13:54)Daniel Wrote: try this CSS
Code:
td.day.active {
  background-color: #00FF32 !important;
}
span.current {
  color: #00FF32 !important;
}
That works!
Thank you for help.
Reply


Forum Jump: