Change size of node status icon

Francesco V.

Active member
I wish to change icon size from 36 to 42px. I put in EXTRA.css of a child custom styles:

HTML:
.node .nodeIcon
{
    margin: 7px 0 7px 10px;
float: left;
width: 42px;
height: 42px;
 
}

but it seems that this setting is overwritten again by the standard one with 36px. Any ideas ?
 
yep i already identified the original css file but i wish to avoid to touch it. I thought i could make all by adding overwriting styles in extra.css :oops:

Your choice. I haven't tested it but you probably need to important the parts you want adjusted.

Code:
.node .nodeIcon
{
    margin: 7px 0 7px 10px;
float: left;
width: 42px !important;
height: 42px !important;
 
}
 
Top Bottom