Page 1 of 1

CSS??

PostPosted: Tue Nov 08, 2016 8:09 am
by rwu2359
Where is the CSS for the new red date the red 'current' time line??


john

Re: CSS??

PostPosted: Tue Nov 08, 2016 11:58 am
by DanW
Hi John,

The CSS for the new current time line can be found in the first example at the link below. Let us know if that helps, and keep us posted with any other questions.

http://www.seedcode.com/pmwiki/index.ph ... eMaker.CSS

All the best,

Re: CSS??

PostPosted: Sat Dec 10, 2016 11:53 am
by rwu2359
Not so helpful Dan
That removes the display but doent give any clues as to how to amend the colour or font or size??

Re: CSS??

PostPosted: Sat Dec 10, 2016 2:21 pm
by John Sindelar
Hi John,

I think Dan assumed you just needed to know the element IDs (#timelineTime and #timelineContainer). Here's an example of changing the color and font size of those elements:

Code: Select all
#timelineTime {
color: green !important;
font-size: 1.2em !important;
top: -14px !important;
}
#timelineContainer {
border-top-color: green !important;
}

Re: CSS??

PostPosted: Sun Dec 11, 2016 5:57 am
by rwu2359
Screen Shot 2016-12-11 at 14.12.25.png
Screen Shot 2016-12-11 at 14.12.25.png (27.34 KiB) Viewed 10297 times


Thanks John... just the help I needed..

all lovely.