Welcome to the nuBuilder Forums!

Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.

Form Wizard page styling

Locked
massiws
Posts: 503
Joined: Thu May 24, 2012 2:08 am
Location: Milan, Italy
Contact:

Form Wizard page styling

Unread post by massiws »

In the last build I noticed some display defects in the Form Wizard page:
img.png
To correct I made two changes:
  1. I modified the sob_all_height value on seven button objects:

    Code: Select all

    UPDATE `zzzsys_object` SET `sob_all_height` = '26' WHERE `zzzsys_object`.`zzzsys_object_id` = '52e1d83f5e35df5';
    UPDATE `zzzsys_object` SET `sob_all_height` = '26' WHERE `zzzsys_object`.`zzzsys_object_id` = '52e1d823b7e73e1';
    UPDATE `zzzsys_object` SET `sob_all_height` = '26' WHERE `zzzsys_object`.`zzzsys_object_id` = '52e6f46bb695a82';
    UPDATE `zzzsys_object` SET `sob_all_height` = '26' WHERE `zzzsys_object`.`zzzsys_object_id` = '52eb2be10a06e51';
    UPDATE `zzzsys_object` SET `sob_all_height` = '26' WHERE `zzzsys_object`.`zzzsys_object_id` = '52e1d677888a8c8';
    UPDATE `zzzsys_object` SET `sob_all_height` = '26' WHERE `zzzsys_object`.`zzzsys_object_id` = '52e1d6b61a8c8cd';
    UPDATE `zzzsys_object` SET `sob_all_height` = '26' WHERE `zzzsys_object`.`zzzsys_object_id` = '52e1d6c72bec014';
    
  2. in Setup -> System Setup -> Header I reduced the top/bottom padding in .nuBottom style:

    Code: Select all

    .nuButton {
      display: inline-block;
      padding: 4px 12px;  /* changed this value */
      margin-bottom: 0;
    
Hope this helps,
Max
You do not have the required permissions to view the files attached to this post.
dowster
Posts: 2
Joined: Wed Nov 26, 2014 3:34 am

Re: Form Wizard page styling

Unread post by dowster »

Hi Max,
It certainly did - thank you,
Steve
admin
Site Admin
Posts: 2825
Joined: Mon Jun 15, 2009 2:23 am
Been thanked: 29 times

Re: Form Wizard page styling

Unread post by admin »

Guys,

We have fixed this in later builds although css changes don't automatically get updated when you run nuinstall.php

Steven
Locked