Page 1 of 1

Trouble Inserting a label at top of screen

Posted: Thu Jul 04, 2013 3:47 pm
by Andy Parker

Hi,

I am having trouble positioning a label at the top of the screen.

I already have a lot of components on the screen, but I wish to insert a label (or grid - I've tried both) above all of the other components.

It won't let me, it just leaves the picture of the label and when I click away the picture disappears and I find the label at the bottom of the page.

Is there a knack to this? I've tried increasing the margin but that's not worked..

many thanks

Andy.


Trouble Inserting a label at top of screen

Posted: Thu Jul 04, 2013 7:22 pm
by Kateryna Grynko

Hi Andy,

Could you please share your app with a href="mailto:support@appery.io" rel="nofollow"support@appery.io/a and tell us the app name so I could take a look?


Trouble Inserting a label at top of screen

Posted: Thu Jul 04, 2013 7:24 pm
by Andy Parker

Thanks Katya,

its shared: MotorwayCamWatch

I'm trying to add a label directly under the header and before the 1st grid (containing select lists) on the main page "CAMWATCH"


Trouble Inserting a label at top of screen

Posted: Thu Jul 04, 2013 9:50 pm
by Kateryna Grynko

Hi Andy,

We are able to reproduce the behaviour. There seems to be a bug, but we need some time for research.


Trouble Inserting a label at top of screen

Posted: Fri Jul 05, 2013 7:19 am
by Andy Parker

Many thanks for looking into this, I appreciate it may take some time.

As a workaround I intend to make the header smaller, I've done this by changing the class and that works, however, I've tried to set the text size to small but its not taking the setting, I've listed the code below, can you spot a problem please?

.classHeader {
height:10px;
font-size:8px;
}


Trouble Inserting a label at top of screen

Posted: Fri Jul 05, 2013 8:16 am
by Maryna Brodina

Hi, we reported bug you described.
You style is overwritten with another one, also h1 has some margin. Please try this code:
code.classHeader {
height:10px;
}
.classHeader h1.ui-title{
margin: 1px 0;
font-size:8px;
}/code


Trouble Inserting a label at top of screen

Posted: Fri Jul 05, 2013 8:58 am
by Andy Parker

Perfect ! many thanks it works like a charm.

Is there any documentation you can point me to where I can look up classes and find this information for myself - eg buttons as well?


Trouble Inserting a label at top of screen

Posted: Fri Jul 05, 2013 9:02 am
by Maryna Brodina

Do you mean something like this http://docs.appery.io/documentation/a...?


Trouble Inserting a label at top of screen

Posted: Fri Jul 05, 2013 11:29 am
by Andy Parker

how did I miss that? - many thanks again Marina, great support!