diff --git a/htdocs/categories/viewcat.php b/htdocs/categories/viewcat.php
index f1d2e08626c..dcb795cc771 100644
--- a/htdocs/categories/viewcat.php
+++ b/htdocs/categories/viewcat.php
@@ -564,7 +564,7 @@ if ($type == Categorie::TYPE_PRODUCT) {
// Link to delete from category
print '
';
if ($permission) {
- print "id."&type=".$typeid."&action=unlink&token=".newToken()."&removeelem=".$prod->id."'>";
+ print 'id)."&type=".urlencode($typeid)."&action=unlink&token=".newToken()."&removeelem=".$prod->id.'">';
print $langs->trans("DeleteFromCat");
print img_picto($langs->trans("DeleteFromCat"), 'unlink', '', false, 0, 0, '', 'paddingleft');
print "";
diff --git a/htdocs/theme/eldy/global.inc.php b/htdocs/theme/eldy/global.inc.php
index 413e98f5803..6e860b8a37c 100644
--- a/htdocs/theme/eldy/global.inc.php
+++ b/htdocs/theme/eldy/global.inc.php
@@ -5498,11 +5498,11 @@ span[phptag] {
border-bottom: 1px solid #ccc;
background: #e6e6e6;
display: inline-block;
- padding: 5px 5px 5px 5px;
z-index: 1000;
}
.centpercent.websitebar {
width: calc(100% - 10px);
+ padding: 5px 5px 5px 5px;
font-size: 0.94em;
}
.websitebar .buttonDelete, .websitebar .button {
diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php
index b87cf455281..67783785de5 100644
--- a/htdocs/theme/md/style.css.php
+++ b/htdocs/theme/md/style.css.php
@@ -5482,10 +5482,10 @@ span[phptag] {
border-bottom: 1px solid #ccc;
background: #eee;
display: inline-block;
- padding: 5px 5px 5px 5px;
}
.centpercent.websitebar {
width: calc(100% - 10px);
+ padding: 5px 5px 5px 5px;
font-size: 0.94em;
}
.websitebar .buttonDelete, .websitebar .button {
|