This forum is no longer open and is for reading/searching only.

Please use our new MachForm Community Forum instead.

MachForm Community Forums » MachForm 2

Style Section Breaks


  1. ryanpowell
    Member

    Is it possible to style individual section breaks? I just need one section break to be different from the rest.

    Posted 14 years ago #
  2. yuniar

    Yes that is possible. Let say your section break is having this code:

    <li class="section_break" id="li_3">
    <h3>Section Break</h3>
    <p/>
    </li>

    then you can style it by using this CSS code:

    #li_3.section_break{
      ...your custom css code here....
    }

    MachForm Founder

    Posted 14 years ago #
  3. ryanpowell
    Member

    I'm not having any luck with this code. Doesn't seem to be changing anything.

    Main attributes that I am trying to change are...
    - Lose the border
    - Change the color to black
    - Change the font size

    Code I inserted is as follows:

    #li_53.section_break{
    	border-top: none;
    	color:#000000
    	font-size:100%;
    }
    Posted 14 years ago #
  4. redityo

    Hello,

    Try with these CSS code :

    #li_53.section_break{
    	border-top: none !important;
    	color:#000000 !important;
    	font-size:100% !important;
    }

    if the code still not work, is it possible to send your form url in here ? I will check it.


    MachForm Support

    Posted 14 years ago #

RSS feed for this topic

Reply