LIST

Why when I apply the list, Indent in the inspector pallet does my text loose it style and look as though it has no styling?


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

If you created your text style using the P tag as your base, or
included the P tag in your style definition, then the LI tag will not
inherit that style and you go back to whatever the base font is in
your browser (Times 16, most likely). If you want a single text style
to be inherited across the page, you can try creating a body tag style
and set your defaults there. Beware, though, I have had some cases
(can’t recall what version of Freeway) where this resulted in getting
multiple tags within my page, as Freeway attempted to optimize
the style list.

Walter

On Jun 11, 2010, at 12:05 PM, Mr worm wrote:

Why when I apply the list, Indent in the inspector pallet does my
text loose it style and look as though it has no styling?


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 Walt, that did the job!

Is it possible to set a ‘list’ to be bulleted however without any indent?

Say left aligned!!?


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

You would manipulate the ul padding-left and/or the li margin-left to
do this. Test test test in lots of browsers if you do. It’s very hard
to get this absolutely right without a lot of extra effort to zero out
the browser defaults. You can also choose Freeway’s unindented list,
which uses a definition list instead of an unordered list. I believe
it uses the dt tag for the individual items, so:

<dl>
	<dt>No indent, but no bullet either</dt>
	<dt>No indent, but no bullet either</dt>
</dl>

Walter

On Jun 11, 2010, at 12:22 PM, Mr worm wrote:

Thanks Walt, that did the job!

Is it possible to set a ‘list’ to be bulleted however without any
indent?

Say left aligned!!?


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