Using text instead of FontAwesome Icon in WidgetBar?

HI,

I’ve activated the widgetbar and I need to display the word “forms” instead of just an icon. How woulld I accomplish this?
Thanks,
Mark

Hi Mark,

Are you referring to the + on the corner of the header of the top widgets?

Please clarify

Thanks

Yes.

I’m sure something will need to be done to the background rollover action too.

Hi Mark,

To achieve that, you can add this in Theme Options > CSS

.x-btn-widgetbar .x-icon-plus-circle:before {
     content:"Forms";
}

.x-btn-widgetbar .x-icon-plus-circle {
    position: static;
    top: 0;
    right: 0;
    padding: 5px 20px;
    background-color: #000;
    color: #fff;
}

.x-btn-widgetbar i:hover {
    background-color: red;  
}

.x-btn-widgetbar {
    border:0;
}

Hope that helps

Thanks much Paul!

You’re welcome :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.