/* Style for the button */ .custom-gallery-button { position: absolute; top: 50%; left: 20px; /* Adjust this value to position the button horizontally */ transform: translateY(-50%); z-index: 999; background-color: #fff; /* Button background color */ color: #333; /* Button text color */ padding: 10px 20px; /* Adjust padding as needed */ border: 1px solid #333; /* Button border */ border-radius: 5px; /* Button border radius */ cursor: pointer; } /* Style for the button on hover */ .custom-gallery-button:hover { background-color: #333; /* Button background color on hover */ color: #fff; /* Button text color on hover */ } /* Hide default navigation arrows */ .sqs-gallery-controls { display: none !important; }