Hi Kyle,
I would like to use the column as a big button (see attachment).
The reader should be able to click the whole item, not just the button on the item.
I solved this by adding a href below the text and doing the following custom css:
.clickable a:not(.sf-button) {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
text-decoration: none;
z-index: 10;
background-color: white;
/*workaround to make clickable in IE */
opacity: 0;
/*workaround to make clickable in IE */
filter: alpha(opacity=0);
/*workaround to make clickable in IE */
}
Works but is a bit dirty, I think.
It would be great to include this with a future update (or new theme). 🙂
Kind regards,
Simon
Attachments:
You must be
logged in to view attached files.