Is there a way to make it so that clicking on the padding with the grey background color and orange rollover will also open the link, in addition to clicking on the text as expected?
https://i.sstatic.net/AJ9Fy.png
The JavaScript code is shown below:
sophiaList += "<li class='sophia_list_itemb' ><a class='sophia_book_link'
href='" + neighborUrl + params + "' onclick='window.open(this.href); return false;' >" + image_title
+ "</a></li>";
The CSS code is shown below:
.sophia-books-listView li {
display: block !important;
/*height: 175px !important;*/
position: relative !important;
margin-bottom: 35px !important;
text-align:left !important;
font-family: verdana !important;
font-style: bold;
font-size: 13px;
background-color: #EBEBEB !important;
padding: 8px !important;
-moz-border-radius: 15px;
border-radius: 15px;
box-shadow: -4px 3px 4px rgba(0, 0, 12, 0.72);
margin-left: 2px;
padding-left: 5px;
width: 80%;}
Please refer to the linked image for more information. Thank you.