3.2.0

Formatting footers for two different grids

This works but affects the footers all grids:
.aw-footer-0 .aw-column-4 {text-align:right;}

This doesn't work at all:
#grid2.aw-footer-0 #grid2.aw-column-4 {text-align:right;}

Nor does:
#grid2.aw-footer-0 .aw-column-4 {text-align:right;}

How do I do this using CSS?

Thanks,
Chris
Chris
April 19,
You need to put some whitespace between the id and the class(es). So you would have something like this -
#grid2  .aw-footer.... {...}

You'll find more details here http://www.w3.org/TR/CSS2/
Anthony
April 19,
Should be

#grid2 .aw-footer-0 .aw-column-4 {text-align:right;}
Alex (ActiveWidgets)
April 20,
Good heavens. Never mind. Long weekend and I shouldn't have been messing around with this.

It works just fine.

Thank you,
Chris
Chris
April 20,

This topic is archived.

See also:


Back to support forum