Button with border

hello,

I once had help with css adding a “button” to my navbar. Now i added a real button and it is being outlined. I need to delete that coding but am no sure which codes to delete with out messing something up lol

thanks

Hello Hustin,

I can see that you added this custom css:

.x-navbar .desktop .x-nav > li:last-child a, .x-navbar .mobile .x-nav > li:last-child a {
    padding: 10px 29px 10px;
    height: auto;
    border: 2px solid red;
    border-radius: 3px;
    color: white;
}
.x-navbar .desktop .x-nav > li:last-child a {
    padding: 20px 29px;
    border: 2px solid red;
    border-radius: 3px;
    color: white;
}

You will have to update these blocks and remove the border:

.x-navbar .desktop .x-nav > li:last-child a, .x-navbar .mobile .x-nav > li:last-child a {
    padding: 10px 29px 10px;
    height: auto;
    color: white;
}
.x-navbar .desktop .x-nav > li:last-child a {
    padding: 20px 29px;
    color: white;
}

Hope this helps. Kindly let us know.

that didn’t work. I don’t know I wasn’t clear but i am trying to remove the box around the button .

Hello Justin,

You seem to forgot to apply the solution I gave.

To save us time, I went ahead and edited your custom css anyway.

Please check your site now.

I added the css you gave me but It didnt work. Maybe I needed to clear my cache. Thanks for doing it anyways

No Problem.
If you need anything else we can help you with, don’t hesitate to open another thread.

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