• Resolved wiggyswig

    (@wiggyswig)


    Hello I know this is a real rookie mistake but can anyone tell me why my contact us button is stretched out so much? I have been altering the css to make custom buttons however now one looks ridiculous. This is the link to my first ever website.
    I know it is not very responsive at the moment but know how to resolve that issue.

    https://callardscakes.com/home/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Remplace this
    nav .filler {
    display: inline-block;
    height: 0;
    width: 100%;
    }
    by
    nav .filler {
    }

    and

    nav ul {
    display: block;
    line-height: 40px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    text-align: center;
    z-index: 400;
    }

    And

    nav ul li {
    display: inline;
    list-style: none outside none;
    margin: 0 20px;
    padding: 0;
    position: relative;
    }

    Thread Starter wiggyswig

    (@wiggyswig)

    Perfect thanks thats got it working now.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Issues with button?’ is closed to new replies.