Hey Paul, I am using the debut theme, here is the URL to my store, any help would be greatly appreciated.
https://www.baldiwear.com/
As I said, I want to center the ACTIVEWEAR button, and the BEACHWEAR button, such that regardless of the screen resolution they are in centered.
Here is code I currently have, though here it is using absolute positioning (as I was trying a different technique, but the idea is the same, I want both buttons to be in the center of their respective GIFS.)
.button {
background-color: #fff; /* fallback /
background-color: rgba(255, 255, 255, 0.4);
border-color: #fff; / fallback */
border-color: rgba(255, 255, 255, 0.4);
display: inline-block;
position: absolute;
transform: translate(-50%,-50%);
margin-right: -50%;
top: 70%;
left: 67%;
width: 400px;
height: 80px;
padding: 8px;
color: white;
font-family: ‘ITC Avant Garde Gothic’;
font-size: 20px;
font-weight: normal;
text-transform: uppercase;
border: 2px solid whitesmoke;
border-radius: 10px;
text-align: center;
line-height: 65px;
outline: none;
text-decoration: none;
transition: background-color 0.5s ease-out, color 0.5s ease-out;
}
.button:active {
font-weight: $font-weight-bold;
}
.button2 {
background-color: #fff; /* fallback /
background-color: rgba(255, 255, 255, 0.4);
border-color: #fff; / fallback */
border-color: rgba(255, 255, 255, 0.4);
display: inline-block;
position: absolute;
transform: translate(-50%,-50%);
margin-right: -50%;
top: 70%;
left: 33%;
width: 400px;
height: 80px;
padding: 8px;
color: white;
font-family: ‘ITC Avant Garde Gothic’;
font-size: 20px;
font-weight: normal;
text-transform: uppercase;
border: 2px solid whitesmoke;
border-radius: 10px;
text-align: center;
line-height: 65px;
outline: none;
text-decoration: none;
transition: background-color 0.5s ease-out, color 0.5s ease-out;
}
.button2:active {
font-weight: $font-weight-bold;
}