Saturday, February 28, 2009

Re: how to arrange Checkbox in one Row

You might have to use CSS for that. If there is a div around each
checkbox, just make sure you assign a float to them in css lke this:
In case you just want to target the checkboxes div, wrap a div around
all your checboxes. Give it a class or an id.

Then in css,
#divname input{
float: left;
}

or

.divname input{
float: left;
}

On Feb 28, 5:29 am, Maulik <maulik....@gmail.com> wrote:
> hi to all,
> here my question is how can i arrange my checkbox in one row.
> thanks,
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "CakePHP" group.
To post to this group, send email to cake-php@googlegroups.com
To unsubscribe from this group, send email to cake-php+unsubscribe@googlegroups.com
For more options, visit this group at http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

No comments: