How can I change the header background for an image of same dimension using CSS
I want to change the standard header for a custom image using CSS
Catch up wih the Appery.io community on our forum. Here you'll find information on the lastest questions and issues Appery.io developers are discussing.
https://forum.appery.io/
I want to change the standard header for a custom image using CSS
Hi,
Take a look at here please:
http://davidwalsh.name/scoped-css
I need to change the background of an app i am building in appery.io with a custom image i have uploaded. I dont know how this can be implemented either via the interface or using CSS
Do you have an only image and want to stretch it to the entire header, or do you have some pictures and want to use one of them as a background depending on the size of the screen?
i have an only image and want to stretch it. i already have a logo in place but the logo should be over the header image. i'm new to the platform.
Try the following.
Create a class called header-bg on the mobileheader element for a page. Upload your image to the assets and create the following custom css class: pre.header-bg {
background-image: url(header.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: 0px 0px;
} /preAs for an image path - you can check this topic: https://getsatisfaction.com/apperyio/...
As for adding a logo - you can use Image component: https://getsatisfaction.com/apperyio/...
This can also help you to set a background image for any component: https://getsatisfaction.com/apperyio/...