http://img707.imageshack.us/img707/7264/footerjg.png

Hi, I thank the community for all the help with my project thusfar.

For now, I am interested in turning the links from a vertical alignment to a horizontal one. are there easy ways to do this or is it in the CSS? Thanks for the help, much appreciated.

Comments

nikkwong’s picture

BUMP sorry.

nikkwong’s picture

Bump

nikkwong’s picture

bump ?

nikkwong’s picture

bump ?

nikkwong’s picture

bump

nikkwong’s picture

bump bump bump..I've learned to display:inline but can't seem to figure out where. thanks

nikkwong’s picture

Bump

gausarts’s picture

It's a matter of CSS as you thought.
You can install firebug to find out relevant container for the footer.
Using display inline or inline-block will do, e.g.:

/* To center */
.region-footer {
  text-align: center;
}

/* Adjust selector accordingly, do not float this if you need to center */
.region-footer .menu li {
  display: inline-block;
  margin: 0 1em;
}

love, light n laughter

nikkwong’s picture

Great. Thank you