With custom CSS I added “Click here to learn more” on the right of each of my accordion items on my site: http://stryveforme.com/recommendations/
div.click {
float: right;
padding: 0px;
}
I would like this text to be hidden at smaller screen sizes so I tried this:
@media screen and (max-width: 600px) {
div.click {
float: right;
padding: 0px;
visibility: hidden;
display: flex;
clear: both;
}
That worked, but made “Click here to learn more” drop to a new line and align left. I’m not sure how to fix this.