[Pro] Ticker tape

http://justineasthall.com/ticker.html

Is there a way to remove the box surround the text? I think I once saw a simple way of doing this Action in pure HTML?

Thanks!


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

The box on your example page has the classname ‘tickeritem3’, so you could remove the border by adding this style to your page:

.tickeritem3 {
	border: none;
	font: 24px/24px normal Helvetica, sans-serif;
	color: #999;
	padding: 0;
	margin: 0;
}

Walter

On Feb 14, 2012, at 6:25 AM, Justin Easthall wrote:

http://justineasthall.com/ticker.html

Is there a way to remove the box surround the text? I think I once saw a simple way of doing this Action in pure HTML?

Thanks!


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Just tried adding after /Head - but not working? Do I need to add where?


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Did you wrap it in tags?

Walter

On Feb 14, 2012, at 11:22 AM, Justin Easthall wrote:

Just tried adding after /Head - but not working? Do I need to add where?


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

No I literary just added that code inside the header - should I?


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Oh and just to clarify - I mean no background also so its just text nothing else

I did just wrapped that code with the tags still no joy?


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

When you copied from Freewaytalk, you got “curly quotes” instead of “typewriter quotes” for the type=“css”. That’s what’s making your CSS fail. Try typing the code directly, or copy and paste this:

<style type="text/css">
	.tickeritem3 {
		border: none;
		font: 24px/24px normal Helvetica, sans-serif;
		color: #999;
		padding: 0;
		margin: 0;
	}
</style>

See if that helps. Also, I notice I wrote type=“css” and it should be type=“text/css”, so that certainly is contributing to the problem.

Walter

On Feb 14, 2012, at 11:40 AM, Justin Easthall wrote:

Oh and just to clarify - I mean no background also so its just text nothing else

I did just wrapped that code with the tags still no joy?


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Great! that works - do I just add

background: transparent

? or soemthing like that?


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Ahh no go again - you can’t change the width! and it can’t be ‘inline’ and it will end half way through the text if its too long -

Anyway thanks for you help - I found that the HTML marquee worked so I tried that, it was really good except in IE 8 where it disappeared!

Back to a list :wink:


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Sure you can, just add width: 100% or some other valid value.

Walter

On Feb 14, 2012, at 12:25 PM, Justin Easthall wrote:

Ahh no go again - you can’t change the width! and it can’t be ‘inline’ and it will end half way through the text if its too long -

Anyway thanks for you help - I found that the HTML marquee worked so I tried that, it was really good except in IE 8 where it disappeared!

Back to a list :wink:


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Thanks - but trying the Maquee again - I can add links here - but it works fine on webkits but vanishes in IE??

bottom left column

  • its only a really basic bit on HTML right??

freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Its just a markup item then in that surrounding quote2div - not inline… if I put the HTML item inline then it disappears from all browsers if its absolute then it disappears from IE only…


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

This is driving me nuts? It should be working fine in IE!? Gonna start another entry for this see if anyone can figure this out - thanks again

J


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options