You are not logged in.
Hi all,
Please can someone tell me what I need to edit to have my list of options per service listed vertially rather than horizontally.
My option descriptions are rather long and tend to wrap around
you can see what I mean here
pgbcoaching.co.uk/ha/
Many thanks
Paul
Offline
Hello,
these options links are wrapped within a div that has the "buttonBar" CSS class. To stack the links vertically, you can set the display property of "A" as "block" like this:
#ha .buttonBar A {
... some existing code here...
DISPLAY: block;
}
Offline
Perfect!
Thank you!
Offline