MythonPonty Posted yesterday at 02:35 PM Posted yesterday at 02:35 PM /* Menütags */ li[data-navapp="blog"] span:nth-child(2)::after { content: "Pro"; display: inline-block; background: #FFB343; padding: 2px 5px; font-size: 10px; text-transform: uppercase; border-radius: 4px; color: black; font-weight: bold; margin-left: 10px; letter-spacing: 0em; } li[data-navapp="gallery"] span:nth-child(2)::after { content: "Neu"; display: inline-block; background: #00cc66; padding: 2px 5px; font-size: 10px; text-transform: uppercase; border-radius: 4px; color: black; font-weight: bold; margin-left: 10px; letter-spacing: 0em; } I did this for my testsite... here you control which app it should affect EliasM, Daniel F, Matt and 1 other 4
Drewfus Posted yesterday at 03:12 PM Posted yesterday at 03:12 PM @David N. Exactly where did you put this code ?? I can't figure it out.
EliasM Posted yesterday at 03:14 PM Posted yesterday at 03:14 PM 39 minutes ago, MythonPonty said: /* Menütags */ li[data-navapp="blog"] span:nth-child(2)::after { content: "Pro"; display: inline-block; background: #FFB343; padding: 2px 5px; font-size: 10px; text-transform: uppercase; border-radius: 4px; color: black; font-weight: bold; margin-left: 10px; letter-spacing: 0em; } li[data-navapp="gallery"] span:nth-child(2)::after { content: "Neu"; display: inline-block; background: #00cc66; padding: 2px 5px; font-size: 10px; text-transform: uppercase; border-radius: 4px; color: black; font-weight: bold; margin-left: 10px; letter-spacing: 0em; } I did this for my testsite... here you control which app it should affect How to make it appear on mobile?
David N. Posted yesterday at 03:15 PM Posted yesterday at 03:15 PM 2 minutes ago, Drewfus said: @David N. Exactly where did you put this code ?? I can't figure it out. In the Custom CSS, that you can access in the Theme editor. Drewfus 1
fileo Posted 20 hours ago Posted 20 hours ago 12 hours ago, David N. said: Love the pun!! 🤣 Is it possible to renew my beta community? https://x332394.invisionservice.com/ How did you add color for Buttons?
MythonPonty Posted 10 hours ago Posted 10 hours ago 9 hours ago, fileo said: How did you add color for Buttons? You can do it with this short snippet li[data-navapp="blog"] .fa-solid { color: #007BFF; font-size: 16px; transition: color 0.3s ease; } li[data-navapp="blog"]:hover .fa-solid { color: #FF5733; } David N. 1
MythonPonty Posted 10 hours ago Posted 10 hours ago (edited) 15 hours ago, EliasM said: How to make it appear on mobile? /* Blogs */ li:nth-child(2) span.ipsOffCanvas__label::after { content: "Pro"; display: inline-block; background: #00cc66; padding: 2px 5px; font-size: 10px; text-transform: uppercase; border-radius: 4px; color: black; font-weight: bold; margin-left: 10px; } /* Downloads */ li:nth-child(6) span.ipsOffCanvas__label::after { content: "Neu"; display: inline-block; background: #FFB343; padding: 2px 5px; font-size: 10px; text-transform: uppercase; border-radius: 4px; color: black; font-weight: bold; margin-left: 10px; } Here only this works, currently. Maybe @Ehren have a better idea for the mobile view ? Edited 10 hours ago by MythonPonty EliasM 1
EliasM Posted 7 hours ago Posted 7 hours ago (edited) 3 hours ago, MythonPonty said: /* Blogs */ li:nth-child(2) span.ipsOffCanvas__label::after { content: "Pro"; display: inline-block; background: #00cc66; padding: 2px 5px; font-size: 10px; text-transform: uppercase; border-radius: 4px; color: black; font-weight: bold; margin-left: 10px; } /* Downloads */ li:nth-child(6) span.ipsOffCanvas__label::after { content: "Neu"; display: inline-block; background: #FFB343; padding: 2px 5px; font-size: 10px; text-transform: uppercase; border-radius: 4px; color: black; font-weight: bold; margin-left: 10px; } How can I select it for the gallery Edited 7 hours ago by EliasM
MythonPonty Posted 7 hours ago Posted 7 hours ago Count the position and change it here... If the gallery is on position 5 Change the 2 in 5 li:nth-child(2) span.ipsOffCanvas__label::after {
EliasM Posted 7 hours ago Posted 7 hours ago 4 minutes ago, MythonPonty said: Count the position and change it here... If the gallery is on position 5 Change the 2 in 5 li:nth-child(2) span.ipsOffCanvas__label::after { I already got it, thanks MythonPonty 1
EliasM Posted 6 hours ago Posted 6 hours ago 32 minutes ago, MythonPonty said: Count the position and change it here... If the gallery is on position 5 Change the 2 in 5 li:nth-child(2) span.ipsOffCanvas__label::after { It would be better if there was an option to select the application directly, where this selection changes based on the user's permissions, I found that it appears to the visitor on another name😂
MythonPonty Posted 6 hours ago Posted 6 hours ago 1 minute ago, EliasM said: It would be better if there was an option to select the application directly, where this selection changes based on the user's permissions, Correct... first i've tried it with this /* Blogs */ li a span.ipsOffCanvas__label:contains("Blogs")::after { content: "Neu"; display: inline-block; background: #00cc66; padding: 2px 5px; font-size: 10px; text-transform: uppercase; border-radius: 4px; color: black; font-weight: bold; margin-left: 10px; letter-spacing: 0em; } I actually wanted to check if the value of the label is “Blogs”, that the CSS rule then takes effect. But that doesn't seem to work. Maybe Ehren has a better solution. 🙂
MythonPonty Posted 6 hours ago Posted 6 hours ago 17 minutes ago, EliasM said: It would be better if there was an option to select the application directly, where this selection changes based on the user's permissions, I found that it appears to the visitor on another name😂 If you want to do this for the mobile view... Here is a solution. document.querySelectorAll('.ipsOffCanvas__label').forEach(label => { if (label.textContent.trim() === "Blogs") { label.insertAdjacentHTML( 'afterend', `<span style=" display: inline-block; background: #FFB343; padding: 2px 5px; font-size: 10px; text-transform: uppercase; border-radius: 4px; color: black; font-weight: bold; margin-left: 10px; ">Blogs</span>` ); } if (label.textContent.trim() === "Downloads") { label.insertAdjacentHTML( 'afterend', `<span style=" display: inline-block; background: #00cc66; padding: 2px 5px; font-size: 10px; text-transform: uppercase; border-radius: 4px; color: black; font-weight: bold; margin-left: 10px; ">Downloads</span>` ); } }); But this is not a CSS Code, you have to add this into the Design Area --> JavaScript
Recommended Posts