Cannot align button on mobile | Broadcast theme

Hello,

I am trying to center the button on the image below but I can’t figure out the code

@media only screen and (max-width: 800px){
.slideshow__slide--827f94e5-c5a3-49fe-aee0-bc9cfa88c229  a.hero__btn.btn, .slideshow__slide--827f94e5-c5a3-49fe-aee0-bc9cfa88c229 a.hero__btn.btn {
    position:center !important;
    height: 50px;
    font-size: 17px;
    color: white;
}}

URL : www.ambigoose.com

Thank you so much for your help

Add this code in theme.css bottom

@media(max-width:800px){
.homepage-slideshow .hero__content–transparent .hero__content {
text-align: center;
}
}

Thank you @hawkscode

1 Like