help please

nsgaming

Active member
Registered
Joined
Mar 15, 2021
Messages
41
Points
28

Reputation:

ct.PNG


guys how can i edit that background image and colour.
style = themehouse io dark mode
 

WinSys32

Collaborate
Collaborate
Registered
Joined
Oct 10, 2019
Messages
56
Points
63

Reputation:

Go to your ACP - Appearance - Style Properties - Make sure you edit the correct style properties.
 

nsgaming

Active member
Registered
Joined
Mar 15, 2021
Messages
41
Points
28

Reputation:

View previous replies…

BattleKing

Spirit of darkness
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P Member
Collaborate
Registered
Joined
May 24, 2020
Messages
3,533
Points
523

Reputation:

i do but i can't find option to change that
nsgamingCan be modified in the io.less file of the corresponding theme.

Search for:
Less:
.block.block--category {
    .block-header {
        text-shadow: 0 0 1px rgba(0,0,0,.7);
        position: relative;
        transition: ease-in .15s border-bottom-left-radius, ease-in .15s border-bottom-right-radius;
        &:after {
            content: '';
            background: url(@xf-uix_imagePath/io/images/swirl.png);
            background-size: cover;
            background-position: center;
            position: absolute;
            height: 100%;
            width: 100%;
            z-index: 1;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            display: block;
            mix-blend-mode: overlay;
            pointer-events: none;
        }
    }

You might create a template modification for it.
 

nsgaming

Active member
Registered
Joined
Mar 15, 2021
Messages
41
Points
28

Reputation:

Can be modified in the io.less file of the corresponding theme.

Search for:
Less:
.block.block--category {
    .block-header {
        text-shadow: 0 0 1px rgba(0,0,0,.7);
        position: relative;
        transition: ease-in .15s border-bottom-left-radius, ease-in .15s border-bottom-right-radius;
        &:after {
            content: '';
            background: url(@xf-uix_imagePath/io/images/swirl.png);
            background-size: cover;
            background-position: center;
            position: absolute;
            height: 100%;
            width: 100%;
            z-index: 1;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            display: block;
            mix-blend-mode: overlay;
            pointer-events: none;
        }
    }

You might create a template modification for it.
BattleKingits worked.can i also change background colour
 

BattleKing

Spirit of darkness
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P Member
Collaborate
Registered
Joined
May 24, 2020
Messages
3,533
Points
523

Reputation:

its worked.can i also change background colour
nsgamingIt is in the same file, but it will be calculated with the SPIN function of LESS which is defined behind "m-io_catGradient"
Less:
    &:nth-child(1n) {
        .block-header {.m-io_catGradient(@io-nodeColor1, 0%);}
        .node--unread .node-icon i {.m-io_catGradient(@io-nodeColor1, 0%);}
        .block-body a:hover {.m-io_catColor(@io-nodeColor1, 30%);}
    }
    &:nth-child(2n) {
        .block-header {.m-io_catGradient(@io-nodeColor1, 60%);}
        .node--unread .node-icon i {.m-io_catGradient(@io-nodeColor1, 60%);}
        .block-body a:hover {.m-io_catColor(@io-nodeColor1, 90%);}
    }

The color which will be used is the one behind: uix_primaryColor

1633945878000.jpg
 

nsgaming

Active member
Registered
Joined
Mar 15, 2021
Messages
41
Points
28

Reputation:

It is in the same file, but it will be calculated with the SPIN function of LESS which is defined behind "m-io_catGradient"
Less:
    &:nth-child(1n) {
        .block-header {.m-io_catGradient(@io-nodeColor1, 0%);}
        .node--unread .node-icon i {.m-io_catGradient(@io-nodeColor1, 0%);}
        .block-body a:hover {.m-io_catColor(@io-nodeColor1, 30%);}
    }
    &:nth-child(2n) {
        .block-header {.m-io_catGradient(@io-nodeColor1, 60%);}
        .node--unread .node-icon i {.m-io_catGradient(@io-nodeColor1, 60%);}
        .block-body a:hover {.m-io_catColor(@io-nodeColor1, 90%);}
    }

The color which will be used is the one behind: uix_primaryColor

View attachment 25874
BattleKingthank you soo much for your support >3.
 

thomsa

Moderator
Staff member
Moderator
S.V.I.P Member
Collaborate
Registered
Joined
Jun 22, 2019
Messages
1,169
Points
173

Reputation:

Top