Icon Color In Feature Box Not Available - Question | JoomShaper

Icon Color In Feature Box Not Available

T

thebden

SP Page Builder 1 year ago

We upgraded our SP Pagebuilder but have lost the ability to change the icon color. Can you provide any custom CSS to do this effectively within a feature box??

0
15 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #167942

Hi,

that option should be and should work in 99% cases. info_3117_2024.gif


But of course, one line of Custom CSS can be used anytime:

.sppb-addon-feature .sppb-icon .sppb-icon-container { color: red; }

p.s. Remember to disable Production Mode in SPPB settings before making addons color/size changes.


Useful for next time: https://www.joomshaper.com/blog/which-line-of-css-i-have-to-edit-code-inspector-in-action

0
J
Josef
Accepted Answer
1 year ago #170267

Hi, I'm missing the icon color option as well: https://imgur.com/a/2wSb0t5 And wierd violet-ish color appers.

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #170277

Scroll down, color fo the icon is lower in settings !! Look at my screenshot UP (added 3 weeks ago).

Find Icon Color option.

0
J
Josef
Accepted Answer
1 year ago #170288

OK, I found it in style. It was closed. Man has to click on the Normal or Hover menu to show it up. But it will be definitely easier to have it all together in ICON menu. :)

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #170345

I agree, I will ask to move it higher.

0
J
Josef
Accepted Answer
1 year ago #170397

Another trouble with icon in Feature Box. It is not centered in the background box. https://imgur.com/a/DUrlV2z

0
T
thebden
Accepted Answer
1 year ago #167982

Thank you - I do not have that option in my SP Page Builder - was this added in a recent update? The custom CSS works great but only applies to one icon, in one feature box - what do I have to update all feature boxes (I have 6).

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #167988

Maybe your template override that addon with older code. This is probably the only explanation.

Check here:

templates\THEME-NAME\sppagebuilder\addons\feature

If you have admin.php file inside, DELETE it.

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #167989

This CSS should work for all icons. Without LINK.... I cannot help more.

0
T
thebden
Accepted Answer
1 year ago #170340

Thank you the CSS worked.

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #170403

Instead of dark background use black border around with 10px width - and will be better.

Without URL --- it's hard to help

0
J
Josef
Accepted Answer
1 year ago #170454
0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #170456

Ahoj Josef.

Thanks for access, I will check...

0
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 1 year ago #170458

Ok, found. The problem was NOT with Feature addon, but default styles from file media/com_sppagebuilder/assets/iconfont/cisar_ico/css/cisar_ico.css


To fix it - Use that custom CSS

[class^="icon-"]::before, [class*=" icon-"]::before {
  margin-right: 0 !important;
  margin-left: 0 !important; }

Inside that Page > Custom CSS area - or edit that file, and add corrections at the end.

0
J
Josef
Accepted Answer
1 year ago #170595

Did not expect that, I have edited custom CSS file. Thanks for Your quick help. You Guys are awesome.

0