how can i fix a logo on a website
as i scroll down i want to keep the logo at the same place of the web page
how can i fix it to the users screen?
Use position:fixed in a css style
http://www.w3schools.com/cssref/pr_class_position.asp
You can add a css style to a regular webStyle in the App HTMLHeader field :
<style>
.Style1 {
position:fixed;
left: 0px;
top: 0px;
}
</style>
This will keep the control with the WebStyle Style1 in the upper left corner.
how do i add a css style?
how can i put it in?
1 - Create a WebStyle called Style1
2 - Add THIS : to the HTMLHeader field in the App inspector
<style>
.Style1 {
position:fixed;
left: 0px;
top: 0px;
}
</style>
3 - In the inspector, set the style of your control to Style1