<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://community.appian.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Using a card as a background image</title><link>https://community.appian.com/discussions/f/user-interface/15036/using-a-card-as-a-background-image</link><description>Hi, 
 I was looking around the Appian best practices UX and I saw that they used a card with a background image that took up the whole page kind of like a modern webesite design. 
 
 
 
 Has anyone had any success accomplishing this? If so would you mind</description><dc:language>en-US</dc:language><generator>Telligent Community 12</generator><item><title>RE: Using a card as a background image</title><link>https://community.appian.com/thread/67283?ContentTypeID=1</link><pubDate>Thu, 13 Jun 2019 02:59:44 GMT</pubDate><guid isPermaLink="false">d3a83456-d57b-489c-a84c-4e8267bb592a:5f791d79-1e32-49f5-b975-549f9a9bcdd5</guid><dc:creator>chandhinir</dc:creator><description>&lt;p&gt;Hi ,&lt;/p&gt;
&lt;p&gt;You can use billboard layout. Please find the below code:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;load(
  local!options: {
    {
      icon: &amp;quot;home&amp;quot;,
      name: &amp;quot;House&amp;quot;,
      desc: &amp;quot;A single family home, townhouse, or duplex&amp;quot;
    },
    {
      icon: &amp;quot;building&amp;quot;,
      name: &amp;quot;Condo&amp;quot;,
      desc: &amp;quot;A multi-family building in which you own a unit&amp;quot;
    }
  },
  local!selectedCard,
  {
    a!billboardLayout(
      overlayStyle: &amp;quot;NONE&amp;quot;,
      height: &amp;quot;TALL&amp;quot;,
      backgroundMedia: a!documentImage(
        document: 58221
      ),
      overlayContents: {
        a!richTextDisplayField(
          labelPosition: &amp;quot;COLLAPSED&amp;quot;,
          value: {
            char(
              10
            ),
            char(
              10
            ),
            a!richTextItem(
              text: &amp;quot;Is your home a house or a condo?&amp;quot;,
              color: &amp;quot;ACCENT&amp;quot;,
              size: &amp;quot;LARGE&amp;quot;
            ),
            char(
              10
            ),
            char(
              10
            )
          },
          showWhen: isNull(
            local!selectedCard
          ),
          align: &amp;quot;CENTER&amp;quot;
        ),
        a!columnsLayout(
          columns: {
            a!columnLayout(),
            a!forEach(
              items: local!options,
              expression: a!columnLayout(
                contents: {
                  a!cardLayout(
                    contents: {
                      a!richTextDisplayField(
                        labelPosition: &amp;quot;COLLAPSED&amp;quot;,
                        value: {
                          char(
                            10
                          ),
                          char(
                            10
                          ),
                          a!richTextIcon(
                            icon: fv!item.icon,
                            color: &amp;quot;#8CA1D0&amp;quot;,
                            size: &amp;quot;LARGE&amp;quot;
                          ),
                          char(
                            10
                          ),
                          char(
                            10
                          ),
                          a!richTextItem(
                            text: fv!item.name,
                            color: &amp;quot;ACCENT&amp;quot;,
                            size: &amp;quot;LARGE&amp;quot;,
                            style: &amp;quot;STRONG&amp;quot;
                          ),
                          char(
                            10
                          ),
                          char(
                            10
                          ),
                          a!richTextItem(
                            text: fv!item.desc,
                            size: &amp;quot;SMALL&amp;quot;
                          )
                        },
                        align: &amp;quot;CENTER&amp;quot;
                      )
                    },
                    link: a!dynamicLink(
                      saveInto: a!save(
                        local!selectedCard,
                        fv!item.name
                      )
                    ),
                    height: &amp;quot;MEDIUM&amp;quot;
                  )
                },
                width: &amp;quot;MEDIUM&amp;quot;
              )
            ),
            a!columnLayout()
          },
          showWhen: isNull(
            local!selectedCard
          ),
          marginBelow: &amp;quot;STANDARD&amp;quot;
        ),
        a!richTextDisplayField(
          value: local!selectedCard &amp;amp; &amp;quot; next steps would appear here&amp;quot;,
          showWhen: not(
            isNull(
              local!selectedCard
            )
          ),
          align: &amp;quot;CENTER&amp;quot;
        ),
        a!richTextDisplayField(
          labelPosition: &amp;quot;COLLAPSED&amp;quot;,
          value: {
            char(
              10
            ),
            char(
              10
            ),
            a!richTextIcon(
              icon: &amp;quot;arrow-left&amp;quot;,
              link: a!dynamicLink(
                saveInto: a!save(
                  local!selectedCard,
                  null
                )
              ),
              linkStyle: &amp;quot;STANDALONE&amp;quot;,
              color: &amp;quot;ACCENT&amp;quot;
            ),
            a!richTextItem(
              text: &amp;quot; Go back&amp;quot;,
              link: a!dynamicLink(
                saveInto: a!save(
                  local!selectedCard,
                  null
                )
              ),
              linkStyle: &amp;quot;STANDALONE&amp;quot;
            )
          },
          showWhen: not(
            isNull(
              local!selectedCard
            )
          ),
          align: &amp;quot;CENTER&amp;quot;
        )
      }
    )
  }
)&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>