(Invision community 4.6) Pictures integration

Stella

Active member
Registered
Joined
Jul 28, 2019
Messages
41
Points
28

Reputation:

Hello everyone,
I have a problem with pictures on my IPS 4.6... When I upload image from Theme Panel on the Admin CP, the image doesn't appear on the forum ... What possibility I have to fix that issues ?

Thanks !
 

Ayon

[Developer]
Collaborate
Registered
Joined
Oct 18, 2019
Messages
251
Points
253

Reputation:

Hello everyone,
I have a problem with pictures on my IPS 4.6... When I upload image from Theme Panel on the Admin CP, the image doesn't appear on the forum ... What possibility I have to fix that issues ?

Thanks !
StellaGive a screenshot of the problem
 

Stella

Active member
Registered
Joined
Jul 28, 2019
Messages
41
Points
28

Reputation:

back1.jpg

On the panel, I upload a background picture

back2.PNG

But on the main page of the forum, the background picture doesn't appear ...

The theme version is 4.6 et my IPB version is also 4.6

@Ayon
 

one_finger_man

Well-known member
Registered
Joined
Jan 20, 2022
Messages
385
Points
53

Reputation:

Editing-nexxe.jpg

this is what it should look like you can all so use this code
Code:
html {
    min-height: 100%;
    position: relative;
    /*-webkit-font-smoothing: antialiased;*/
    background-image: url( /Images/);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

body {
    background: transparent;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 18px;
/*    color: {theme="text_color"};*/
    color: #fff;
    height: 100%;
}

make sure you change this
Code:
    background-image: url( /Images/);
 

Stella

Active member
Registered
Joined
Jul 28, 2019
Messages
41
Points
28

Reputation:

View attachment 28485
this is what it should look like you can all so use this code
Code:
html {
    min-height: 100%;
    position: relative;
    /*-webkit-font-smoothing: antialiased;*/
    background-image: url( /Images/);
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
}

body {
    background: transparent;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 18px;
/*    color: {theme="text_color"};*/
    color: #fff;
    height: 100%;
}

make sure you change this
Code:
    background-image: url( /Images/);
one_finger_manIt's work, thank you !
 
Top