eBayLink/Omnivore Support - eBay template code fixes.
Configure eBayLink/Omnivore Support - eBay template code fixes
At Settings -> eBay Australia -> Product Template place the desired code after the line
https://images.omnivore.com.au/css/style.css?v=1.1" rel="stylesheet" type="text/css" media="all" />
making sure it is within the tags
Fix bullet points in the template, these are messy and do not line up as they should:
.gallery-detail ul {
list-style-type: disc;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
line-height: 22px;
padding-left: 25px;
}
.gallery-detail ol {
font-family: 'Open Sans', sans-serif;
font-size: 14px;
line-height: 22px;
padding-left: 25px;
}
Logo Image too wide issue, this will stop the logo image pushing the template out on small screens/mobile:
.logo img {
max-width: 100% !important;
}
Retailer has images in the description code which are too wide and only partly show:
.gallery-detail
img {
max-width: 100% !important;
object-fit: contain !important;
}
If you would like to add all 3 fixes then this is the code:
.gallery-detail ul {
list-style-type: disc;
font-family: 'Open Sans', sans-serif;
font-size: 14px;
line-height: 22px;
padding-left: 25px;
}
.gallery-detail ol {
font-family: 'Open Sans', sans-serif;
font-size: 14px;
line-height: 22px;
padding-left: 25px;
}
.logo img {
max-width: 100% !important;
}
.gallery-detail
img {
max-width: 100% !important;
object-fit: contain !important;
}