centering 1st item css menu

Hi all,

I’m building a css menu and it seems I’m unable to center the parent link while having the submenu flush left.

Is this possible?

Thanks

Anthony


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

Could you please post a link to the page, and show an example of what you want it to look like? As far as I know, it’s not possible with the stock controls of the Action, but you should be able to paste a snippet of CSS into your page to get the effect you want.

Walter

On Jul 13, 2013, at 8:19 PM, anthony wrote:

Hi all,

I’m building a css menu and it seems I’m unable to center the parent link while having the submenu flush left.

Is this possible?

Thanks

Anthony


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

Hi Walter,

I posted some examples here:

http://www.tone-alone.com/freeway_css_menu/

Anthony


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

Try pasting the following into the Page / HTML Markup dialog (switch to the Before section first):

<style type="text/css">
ul.centered.sub {
	text-align: left;
}
</style>

That should do the trick. If it doesn’t, add the !important flag, like this:

text-align: left !important;

That’s the giant-killer in CSS.

Walter

On Jul 14, 2013, at 5:57 PM, anthony wrote:

Hi Walter,

I posted some examples here:

http://www.tone-alone.com/freeway_css_menu/

Anthony


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 Walter,

That worked!

Anthony


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