• Resolved gratschultz2013

    (@gratschultz2013)


    Hello fellow wordpress people, I am trying to figure out how to make the 9 dark green buttons on this page; https://1800daysdev.flywheelsites.com/my-baby/ to be 80px in height? I tried setting its height to 80px but it made the other buttons within the site change to 80px also and I dont need the other buttons 80px high, I only need the buttons on this 1 page to be 80px in height.

Viewing 7 replies - 1 through 7 (of 7 total)
  • Evan Herman

    (@eherman24)

    Your buttons appear to already be 80px in height.

    Thread Starter gratschultz2013

    (@gratschultz2013)

    Hello Evan, thank you for responding. Yes, the buttons are already 80px in height but Im trying to get them 80px in height and still have the text inside to be centered. The text inside wont center when its 80px high for some reason.

    Evan Herman

    (@eherman24)

    There are many ways you can do it, but the quickest way would be to add a top padding to your buttons on that page.

    body.page-id-48 .table-inside a.btn.btn-primary {
       padding-top: 28px;
    }

    Alternatively you can use the line-height parameter to adjust things:

    body.page-id-48 .table-inside a.btn.btn-primary {
       line-height: 3.4;
    }
    Thread Starter gratschultz2013

    (@gratschultz2013)

    Evan, thank you very much. That worked perfectly. Now do you mind helping me out with one more small issue I have been struggling with on that same page?

    Evan Herman

    (@eherman24)

    You should open up a new thread, since it’s unrelated. Someone should chime in to help out.

    Thread Starter gratschultz2013

    (@gratschultz2013)

    I have had a thread opened on this other subject for about a week now and havent gotten a reply yet. What I am trying to do it make the large mint green div at the bottom of the page to be flush with the purple footer on this page; https://1800daysdev.flywheelsites.com/my-baby/

    Evan Herman

    (@eherman24)

    You opened that thread 2 hours ago …. not a week ago.

    You need to adjust the padding, and height of some of the elements. There are a lot of adjustments that need to be made.

    Please mark this thread as resolved.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘How to make buttons 80px in height?’ is closed to new replies.