Home Page Banner's Button - Larger font - SOLVED

Hello there again! I need a quick guidance on this one. Thank you in advance :slight_smile:

My home page’s banner have “buttons”. I would like to make the text inside the buttons larger for devices bigger that 600px. So I was workin with the following but I am not sure this it close.

@media screen and (min-width: 600px){
.shortcode_banner_simple_height_inside h3 {
font-size: 24px;
}
}

please try with this

@media screen and (min-width: 600px){
.slider-content-wrapper a.button {
font-size: 24px !important;
}
}

2 Likes

THANK YOU :slight_smile: :slight_smile: :slight_smile:

1 Like