How can I remove the gap between my interface header and the menu ribbon of my Site?

Hi all,

Please is there a way to remove the gap between my interface header and the site menu bar?  See attached file with a highlight of the gap I am referring to.  I am using the headerContentLayout in the interface.

Thanks

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer

    Can you post a sample of your SAIL code?

  • 0
    A Score Level 1
    in reply to Mike Schmitt

    Thanks,

    Here's the SAIL code:

    a!localVariables(
    
      a!headerContentLayout(
        header: {
          a!localVariables(
    
            local!currentTime: a!refreshVariable(
              value: text(now(), "hh:mm aa"),
              refreshInterval: 0.5
            ),
    
            local!backgroundColor: "#3d4e66",
            local!recordTitleItem: {
              headerStrong: user("jokieblaise@availsys.com", "firstName"),
              headerStrongStyle: "STRONG",
              headerStrongColor: null,
              headerStrongSize: "LARGE",
              header: user("jokieblaise@availsys.com", "lastName"),
              headerStyle: null,
              headerColor: null,
              headerSize: "LARGE",
              subheaderStyle: null,
              subheaderColor: null,
              subheaderSize: "STANDARD",
              image: a!imageField(
                label: "",
                labelPosition: "COLLAPSED",
                images: {
                  rule!UIA_userImageWithReplacementAvatar(user: "jokieblaise@availsys.com")
                },
                size: "MEDIUM",
                isThumbnail: false,
                style: "AVATAR"
              )
            },
            local!tagItem: {
              text: "REQUEST START",
              backgroundColor: "#0000ff",
              textcolor: "#ffffff"
            },
            local!items: {
              {
                label: "Grand Energy Request Application",
                value: "Request Form",
              },
    
              {
                label: text(today(), "dd mmm yyyy"),
                value: local!currentTime,
              }
            },
            rule!CMN_IP_RecordSummaryHeader(
              backgroundColor: local!backgroundColor,
              items: local!items,
              recordTitleItem: local!recordTitleItem
            )
          )
        },
        contents: {}
      )
    )

Reply
  • 0
    A Score Level 1
    in reply to Mike Schmitt

    Thanks,

    Here's the SAIL code:

    a!localVariables(
    
      a!headerContentLayout(
        header: {
          a!localVariables(
    
            local!currentTime: a!refreshVariable(
              value: text(now(), "hh:mm aa"),
              refreshInterval: 0.5
            ),
    
            local!backgroundColor: "#3d4e66",
            local!recordTitleItem: {
              headerStrong: user("jokieblaise@availsys.com", "firstName"),
              headerStrongStyle: "STRONG",
              headerStrongColor: null,
              headerStrongSize: "LARGE",
              header: user("jokieblaise@availsys.com", "lastName"),
              headerStyle: null,
              headerColor: null,
              headerSize: "LARGE",
              subheaderStyle: null,
              subheaderColor: null,
              subheaderSize: "STANDARD",
              image: a!imageField(
                label: "",
                labelPosition: "COLLAPSED",
                images: {
                  rule!UIA_userImageWithReplacementAvatar(user: "jokieblaise@availsys.com")
                },
                size: "MEDIUM",
                isThumbnail: false,
                style: "AVATAR"
              )
            },
            local!tagItem: {
              text: "REQUEST START",
              backgroundColor: "#0000ff",
              textcolor: "#ffffff"
            },
            local!items: {
              {
                label: "Grand Energy Request Application",
                value: "Request Form",
              },
    
              {
                label: text(today(), "dd mmm yyyy"),
                value: local!currentTime,
              }
            },
            rule!CMN_IP_RecordSummaryHeader(
              backgroundColor: local!backgroundColor,
              items: local!items,
              recordTitleItem: local!recordTitleItem
            )
          )
        },
        contents: {}
      )
    )

Children
No Data