Hello @rbradmin,
You are using this custom CSS for your Request Quote button:
.requestQuoteBtn .x-graphic{
font-size: 16px !important;
background-color: #ba0c2f !important;
margin:unset !important;
color: #ffffff !important;
border-color: #ba0c2f !important;
text-shadow: 0 0.075em 0.075em rgba(0,0,0,0.5) !important;
border-radius: 0.25em !important;
padding: 10px 10px 13px 10px !important;
box-shadow: 0em 0.15em 0.65em 0em;
display: inline-block !important;
position: relative !important;
border: 1px solid #ac1100 !important;
cursor: pointer !important;
font-size: 16px !important;
font-weight: inherit !important;
line-height: 1.3 !important;
text-align: center !important;
vertical-align: middle !important;
transition: all 0.15s linear !important;
}
.requestQuoteBtn .x-graphic:hover {
color: #ffffff !important;
border-color: rgb(153,8,39) !important;
background-color: rgb(153,8,39) !important;
text-shadow: 0 0.075em 0.075em rgba(0,0,0,0.5) !important;
}
To include the “Download Datasheet” button kowing that is has the button ID, subscriBeModal-anchor-toggle
. You can update your custom CSS and use this code:
.requestQuoteBtn .x-graphic,
#subscriBeModal-anchor-toggle{
font-size: 16px !important;
background-color: #ba0c2f !important;
margin:unset !important;
color: #ffffff !important;
border-color: #ba0c2f !important;
text-shadow: 0 0.075em 0.075em rgba(0,0,0,0.5) !important;
border-radius: 0.25em !important;
padding: 10px 10px 13px 10px !important;
box-shadow: 0em 0.15em 0.65em 0em;
display: inline-block !important;
position: relative !important;
border: 1px solid #ac1100 !important;
cursor: pointer !important;
font-size: 16px !important;
font-weight: inherit !important;
line-height: 1.3 !important;
text-align: center !important;
vertical-align: middle !important;
transition: all 0.15s linear !important;
}
.requestQuoteBtn .x-graphic:hover,
#subscriBeModal-anchor-toggle:hover {
color: #ffffff !important;
border-color: rgb(153,8,39) !important;
background-color: rgb(153,8,39) !important;
text-shadow: 0 0.075em 0.075em rgba(0,0,0,0.5) !important;
}
Note: Be advised that since this is a custom code, you will be the one to maintain the code whenever there are theme and plugin updates to make sure that your custom CSS keeps on working alongside the theme.
Best Regards.