bpm91
Advanced OT User
- Joined
- May 23, 2019
- Messages
- 1,046
- Solutions
- 7
- Reaction score
- 180
- Location
- Brazil
- YouTube
- caruniawikibr
You can actually make logo on the background image.
What you mean? Depends really on your image resolution..loses a lot of image quality

Then you are doing it wrong. Get a PS and never resize small image into bigger. Only big resolution into smaller will have decent effect.loses a lot of image quality
UIWidget
id: background
anchors.fill: parent
focusable: false
image-source: /images/background
image-smooth: true
image-fixed-ratio: true
margin-top: 1
UIWidget
id: background-logo
anchors.horizontalCenter: parent.horizontalCenter
anchors.verticalCenter: parent.verticalCenter
focusable: false
image-source: /images/background-logo
image-smooth: true
image-fixed-ratio: true
margin-bottom: 210
Thank you for your answer, I actually wanted that when I open the place to enter the password and acc the image would appear along with it, and when I close it, it would also close.modules/client_background/background.otui
image-source: /images/background-logo - change to your file name
margin-bottom: 210 - adjust value to your taste
Code:UIWidget id: background anchors.fill: parent focusable: false image-source: /images/background image-smooth: true image-fixed-ratio: true margin-top: 1 UIWidget id: background-logo anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter focusable: false image-source: /images/background-logo image-smooth: true image-fixed-ratio: true margin-bottom: 210
Then you can do it like this:Thank you for your answer, I actually wanted that when I open the place to enter the password and acc the image would appear along with it, and when I close it, it would also close.
UIWidget
id: background-logo
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: parent.top
focusable: false
image-source: /images/background-logo
image-smooth: true
image-fixed-ratio: true
margin-bottom: 10
ty so much work 100%Then you can do it like this:
in modules/client_entergame/entergame.otui
you can paste this on the bottom and change the values accordingly like before
Code:UIWidget id: background-logo anchors.horizontalCenter: parent.horizontalCenter anchors.bottom: parent.top focusable: false image-source: /images/background-logo image-smooth: true image-fixed-ratio: true margin-bottom: 10