Jump to content

Finding and coloring icons


cofee_iv

Recommended Posts

The icons are actually styled like text. In ACP, go to customization->themes, and click the edit css/html button ("</>") on the theme you want to change. Switch to the CSS tab, and find custom.css (it should be visible on the left pane without needing to expand anything). In that file, add at the bottom:

#elUserNav > li > a {
  color: #F00;
}

where #F00 is the colour that you want (in hex (starting with #), RGB (which is written rgb(255,255,255), representing white), or a colour name, (eg. "hot-pink", no quotes)).

Link to comment
Share on other sites

1 hour ago, Colonel_mortis said:

The icons are actually styled like text. In ACP, go to customization->themes, and click the edit css/html button ("</>") on the theme you want to change. Switch to the CSS tab, and find custom.css (it should be visible on the left pane without needing to expand anything). In that file, add at the bottom:


#elUserNav > li > a {
  color: #F00;
}

where #F00 is the colour that you want (in hex (starting with #), RGB (which is written rgb(255,255,255), representing white), or a colour name, (eg. "hot-pink", no quotes)).

Thank you so much! I will go give it a shot now.

Link to comment
Share on other sites

1 hour ago, Colonel_mortis said:

The icons are actually styled like text. In ACP, go to customization->themes, and click the edit css/html button ("</>") on the theme you want to change. Switch to the CSS tab, and find custom.css (it should be visible on the left pane without needing to expand anything). In that file, add at the bottom:

 

Can you tell me how to change the colors of these, as well, please?

 

example1.gif

Link to comment
Share on other sites

Same principle as above:

.ipsItemStatus.ipsItemStatus_large {
    background: #your-color;
    color: #your-color;
}

and

.ipsItemStatus.ipsItemStatus_large.ipsItemStatus_read {
    background: #your-color;
    color: #your-color
}

for it once it's been read, as in "Introductions" in your screenshot.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

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