Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #847377

    I tried several codes in the CSS but for some reason I can’t change the radius for my buttons. I would like to round the corners for the three buttons located on the “reviews” page. This is what I have in CSS now:

    body div .avia-button {
    border-radius: 10px; }

    div#header_main {
    background-color: white;
    }

    nav.main_menu {
    left: 30%;
    }

    #top #header .av-main-nav > li > a {
    font-size: 18px!important;
    }

    #top .main_menu .menu li ul a { font-size: 16px; }

    body {
    font-size: 18px;
    }

    .widget {
    font-size: 16px;
    }

    .widget {
    padding: 1px 1px 0px 1px;
    }

    .avia-button.avia-size-large { font-size: 22px; } /* for large buttons */

    #847379

    I was able to resolve the issue with the corners but I still can’t seem to make the three buttons the same size as each other. I also want to make the buttons stack on top of each other when the screen gets too small, rather than overlap on the same row. Here is what my CSS looks like now:

    div#header_main {
    background-color: white;
    }

    nav.main_menu {
    left: 40%;
    }

    #top #header .av-main-nav > li > a {
    font-size: 18px!important;
    }

    #top .main_menu .menu li ul a { font-size: 16px; }

    body {
    font-size: 18px;
    }

    .widget {
    font-size: 16px;
    }

    .widget {
    padding: 1px 1px 0px 1px;
    }

    body div .avia-button {
    border-radius: 5px; }

    .avia-button.avia-size-large { font-size: 20px; } /* for large buttons */

    @media only screen and (max-width: 767px) {

    .avia-button.avia-size-large {
    min-width: 0px!important;
    }

    #847507

    Hi,

    Please try the following in Quick CSS under Enfold->General Styling to make them the same width:

    .page-id-3415 .avia-button.avia-color-dark {
        min-width: 250px;
    }

    Best regards,
    Rikard

    #847694

    Thank you

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Can't change the radius for buttons…’ is closed to new replies.