View Single Post
death_jax's Avatar
Posts: 326 | Thanked: 122 times | Joined on Sep 2012 @ Italy
#563
Originally Posted by taixzo View Post
Mine still has a black background. Is there a way to add a background without the homescreen settings app? My Nokia account doesn't have an associated payment method and I'd prefer to keep it that way for now.
Of course. Just follow these steps for background image(s) (two images if you use landscape mode for homescreen with one image 480x854 px for portrait and one image 854x480 px for landscape, PNG format):

- Rename the portrait image as follow meegotouch-desktop-bg.png and the one for landscape as follow meegotouch-desktop-bg-landscape.png and copy both to /usr/share/themes/blanco/meegotouch/images/backgrounds folder.

- Edit the file /usr/share/themes/base/meegotouch/libmeegotouchhome/style/libmeegotouchviews-modified-default.css and, if you changed nothing, at the start of file you can see:
Code:
MSceneWindowStyle#Home {
    minimum-size: 100% 100%;
    preferred-size: 100% 100%;
    maximum-size: 100% 100%;
}
You have to add this line in the entry:
Code:
MSceneWindowStyle#Home {
    minimum-size: 100% 100%;
    preferred-size: 100% 100%;
    maximum-size: 100% 100%;
    background-image: "meegotouch-desktop-bg";
}
And after the above, for portrait background, you have to add this new entry for landscape background:
Code:
MSceneWindowStyle#Home.Landscape{
    minimum-size: 100% 100%;
    preferred-size: 100% 100%;
    maximum-size: 100% 100%;
    background-image: "meegotouch-desktop-bg-landscape";
}
And then restart the phone to see your new backgrounds.

PS: Obviously, if you don't use the landscape mode for the homescreen you can skip the landscape new entry.
 

The Following User Says Thank You to death_jax For This Useful Post: