Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Help developing CSS and HTML code

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #46367
    ettrick31
    Member

    I have a few problems while I was making something for a client.

    1. The 2nd table is too wide, and I can reduce it.
    2. The checkboxes are underlined in Google Chrome
    3. The checkboxes are so far apart.

    Here’s the link: http://kingdomhearts7.com/test1/index.html

    I’m a noob at coding, so any help would be appreciated.

    #142618
    TheDoc
    Member

    For #1: Each of your inputs have a defined width of `260px`, simply remove that from your CSS.

    #142626
    Alex
    Participant

    For #2: Your checkboxes are inheriting a box-shadow from your inputs.

    -webkit-box-shadow: 0px 1px 0px #F2F2F2;

    I see you already have input[type=”checkbox”], and you have set border to none, you can just replace that with

    box-shadow: none;

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.