You are viewing limited content. For full access, please sign in.

Question

Question

Show a Give Feedback tab In an LF Form?

asked on September 24, 2014

I remember at the 2014 Conference they showed a website that had a feedback tab, that when clicked showed an LF Form within it that could be submitted. Is it possible to do the same thing within an LF Form?

1 0

Replies

replied on September 24, 2014

So you'd like the user to be able to fill out a feedback form within a form? You can embed a form within a form (using the embed code found on the Publish page). Is that what you're looking for?

0 0
replied on September 26, 2014

That is the general idea, but I want to take it a step further and have it as a tab that hands on the side of the browser window. Kind of like this Facebook one below:

The tab sits on the side of the browser window and when clicked slides out to expose the content.

1 0
replied on October 20, 2014

I have applied the following CSS and HTML code to an existing form:

<div class="slide-main">
  <img src="http://bit.ly/12nBkTq" />
  <div class="slide-container">
  paste your main content code here 
  </div>
</div>
.slide-main {
  position: fixed;
 top: 50px;
  right: 0;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
}
.slide-container {
  height:270px;
  width:266px;
  border:2px solid #444444;
  border-radius:5px;
    -moz-border-radius:5px;
    -webkit-border-radius:5px;
  background:#dcdcdc;
  position: fixed;
 top: 50px;
  right: -270px;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
}
.slide-main:hover {
right:270px;
}
.slide-main:hover .slide-container{
  right: 0;
}

Where it says "Paste your main content  code here", I have then inserted the embed code of an LF Form. When I preview the form, the slide out works correctly, but it does not display the form inside of it. I have resized the form that should show up inside of it and expanded the height and width of the css slideout, but still nothing. Any ideas how to get this to work?

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.