Not tested these solutions, but given them a try...

Using CSS you can forcibly unset the background colour of the style
attribute (note the !important flag) and set it to an image with the
required pattern.

.timeline-event-tape {
  background-image:  url('dash.png');
  background-color: Inherit !important;
}

Alternatively you could force the <div> height to be 0px, and set a
thick border to be dashed or dotted, so:

.timeline-event-tape {
  height:  0px !important;
  border: 4px 0px 0px 0px;
  border-style: dashed;
}


Simon


border-style:solid;

On Jun 24, 10:13 pm, David Van Fleet <dr.vanfl...@gmail.com> wrote:
> Is there an easy way to have the tape show up as a dashed or dotted line?
> my searches yield discussions of this but the code seems too much for me.
> this what I've got thus far
>
> http://www.west.asu.edu/vanfleet/history/time-test-3.htm

-- 
You received this message because you are subscribed to the Google Groups 
"SIMILE Widgets" group.
To post to this group, send email to simile-widgets@googlegroups.com.
To unsubscribe from this group, send email to 
simile-widgets+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/simile-widgets?hl=en.

Reply via email to