Font size / alignment

Hello, my “portrait” and “other” values have not formatted like the rest of my “subject” id’s. My project isn’t finished yet. Is there something I’ve missed. I would like my “checkboxes” to be to the left of their respective values and the fonts to be the same size as the others within the same div. I apologize if my explanation is confusing, I’m new to coding and these definitions.

1 Like

Hi @mikefinn04 ,

It’s difficult to suggest anything without looking at your code. Could you please share a link to your code.

Hey @mikefinn04 ,

‘Portrait’ and “Other” does not have an opening label tag in your code.

   <label>
     <input type="checkbox" name="style" value="astro">Astrophotography
   </label>
       
       <input type="checkbox" name="style" value="portrait">Portrait
    </label>
  
       <input type="checkbox" name="style" value="other">Other
    </label>
1 Like

Wow…Thank you. Such a simple mistake. Fixed it and it’s resolved . Thank you for looking into that.

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.