Jump to content

Recommended Posts

Posted
/* 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

Posted
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?

Posted
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;
}

 

Posted (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 by MythonPonty
Posted (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 by EliasM
Posted
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

Posted
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😂

Posted
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. 🙂

Posted

 

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 

image.png.3bee90ed3a0b147f915cc66ddfb94e07.png

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...