Results 1 to 3 of 3

Thread: Form CSS

  1. #1
    New user
    Join Date
    06-24-11.
    Posts
    4

    Default Form CSS

    Hi Guys,

    Firstly I'm sorry if this is the wrong area of the forum for this query and sorry if i'm being stupid but I can't work it out!!

    I've created a form (in form generator) but can't get the checkboxes to list vertically - they list horizontally. I'm sure this is a CSS issue.

    I've uploaded an image of how the form is currently looking and how I would like it to look. Any help would be much appreciated.

    Many thanks!!!! :D
    Rachel

  2. #2
    New user
    Join Date
    06-11-09.
    Location
    Valence, France
    Posts
    21

    Default Re: Form CSS

    Hi Rachel,

    Each checkbox and label are into a span tag which have an inline display by default.
    You need to change this display as block. eg :
    Code:
    .ce_form .checkbox_container span {
        display:block;
    }

  3. #3
    New user
    Join Date
    06-24-11.
    Posts
    4

    Default Re: Form CSS

    Genius!

    Thanks :D

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •