creaky

Registered
I'm going to use Flat Awesome+ on a site and wondered how you changed the node title background on Nova. I would like to do something similar with Flat Awesome. I assume it's a template edit and not just CSS.

9190
 
You can do something similar with CSS:

Code:
.XenBase .block--category .block-header-wrapper .block-header
{
    padding: 0 12px 0 0;
    border-top: 1px solid rgb(0, 0, 0);
    border-bottom-width: 0px;
    .block-header--left
    {
        background-color: rgb(255, 255, 255);
        color: rgb(0, 0, 0);
        padding: 10px 15px;
    }
}

Try that in extra.less,can adjust the colors/border color of course :).
 
You can do something similar with CSS:

Code:
.XenBase .block--category .block-header-wrapper .block-header
{
    padding: 0 12px 0 0;
    border-top: 1px solid rgb(0, 0, 0);
    border-bottom-width: 0px;
    .block-header--left
    {
        background-color: rgb(255, 255, 255);
        color: rgb(0, 0, 0);
        padding: 10px 15px;
    }
}

Try that in extra.less,can adjust the colors/border color of course :).

Works perfectly, thanks.
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back