You need to be logged in to post in the forum - Log In

An active JCE Pro Subscription is required to post in the forum - Buy a Subscription

Support is currently Offline

Official support hours
Monday to Friday
09:00 - 17:00 Europe/London (BST)

Please create a new Ticket and we will get back to you as soon as we can.

#102753 Error after update?

Posted in ‘Editor’
This is a public ticket

Everybody will be able to see its contents. Do not include usernames, passwords or any other sensitive information.

Latest post by Ryan on Friday, 24 January 2020 09:45 GMT

bigfishtools
After updating I am having an issue with the Virtuemart descriptions. Anything that is linked causes a new line?

Example: https://beefjerkyunlimited.com/jerky-selections/wildgame-jerky/buffalo-jerky-original-detail.html
Good Example: https://beefjerkyunlimited.com/jerky-chips-thin-and-crispy/beef-chips-thin-n-crispy/black-pepper-beef-jerky-chips-detail.html

When links are removed all is well. Any ideas?

Happy New Year Ryan

Ryan
This is caused by the display:block style in the following css rule on line 966 in the templates/gck_store/css/thirdparty.css file on your site:

.productdetails a,
.vmgroup a {
  color: #ff0000;
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
  padding-bottom: 6px;
}
You can try changing this to display:inline-block, eg:

.productdetails a,
.vmgroup a {
  color: #ff0000;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 6px;
  padding-bottom: 6px;
}

Ryan Demmer

Lead Developer / CEO / CTO

Just because you're not paranoid doesn't mean everybody isn't out to get you.