Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7184893
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T18:17:42+00:00 2026-05-28T18:17:42+00:00

I am interested in putting a survey (using survey monkey) into a website. I

  • 0

I am interested in putting a survey (using survey monkey) into a website. I want it to be in a fixed position as a side bar on the left and shrink the size of the survey box. I do not know much about CSS at all.

    <!DOCTYPE html>
<html dir='ltr' lang='en' xml:lang='en' xmlns='http://www.w3.org/1999/xhtml'>
    <div>
 <head>
    <title>
      Home
       | qfo4produce
    </title>
    <meta content='text/html; charset=utf-8' http-equiv='Content-Type'>
    <link href='css/inuit.css' media='all' rel='stylesheet'>
    <link href='css/grid.inuit.css' media='all' rel='stylesheet'>
    <link href='css/style.css' media='all' rel='stylesheet'>
  </head>
  <body class='wrapper'>
    <div id='header'>
      <a href='index.html' rel='home'>
        <img src='images/banner.png' alt="" title='Home'>
      </a>
</div>

       <div>
    <style type="text/css">
 body{
  margin:0;
  padding:0 right-sidebar-<length> 0 left-sidebar-<length>;
 }
 div#left-sidebar{
  position:fixed;
  top:0;
  left:-30;
  iframe { width: 250px !important; }
  height:100%;
 }
 </style>
     <div id="surveyInfo"> <div><script src="http://www.surveymonkey.com/jsEmbed.aspx?sm=wtvL1HViBjWad5DOwtqu7A_3d_3d"> </script> 
</div>
    <ul class='nav'>
      <li class='first'>
        <a href='what-is-qfo.html' title='What Is QFO?'>What Is QFO?</a>
      </li>
      <li>
        <a href='team.html' title='Team'>Team</a>
      </li>
      <li>
        <a href='examples.html' title='Examples'>Examples</a>
      </li>
      <li>
        <a href='technology.html' title='Technology'>Technology</a>
      </li>
      <li class='last'>
        <a href='mailto:info@franwell.com' title='Contact'>Contact</a>
      </li>
    </ul>
    <a class='login' href='qfo.aspx.html' title='Login'>Login</a>
    <div id='main'>
      <p>
        <img src='images/summary.png' alt="Summary of QfO Process" />
      </p>
    </div>
     Copyright &copy; 2011
    </div>
  </body>
</html>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T18:17:45+00:00Added an answer on May 28, 2026 at 6:17 pm

    What you are asking and the code you have presented is extremely unclear. If you are extremely new to html/css then drawing a picture instead of trying to explain it in words often helps.

    Here is an example where the sidebar is in a fixed position on the left. Fixed means that it will always be there, no matter where the page scrolls to.

    http://jsfiddle.net/Bceat/

    Don’t make CSS declarations inside of other CSS declarations. They should each be on their own.

    /* BAD */
    div#left-sidebar{
        position:fixed;
        iframe { width: 250px !important; } 
     }
    
    /* GOOD */
    div#left-sidebar {
        position:fixed;
    }
    iframe { width: 250px !important; } 
    

     

     
    You’ve also declared your styles inside the body of your html. Don’t do that. Declare styles between the <head></head> tags.

    /* BAD */
    <head>
    </head>
    <style type="text/css">
     body{
      margin:0;
      padding:0 right-sidebar-<length> 0 left-sidebar-<length>;
     }
     div#left-sidebar{
      position:fixed;
     }
     </style>
    
    /* GOOD */
    <head>
      <style type="text/css">
       body{
        margin:0;
        padding:0 right-sidebar-<length> 0 left-sidebar-<length>;
       }
       div#left-sidebar{
        position:fixed;
       }
       </style>
    </head>
    

    You also have some invalid declarations like:

    /* right-sidebar-<length> means nothing */
    padding:0 right-sidebar-<length> 0 left-sidebar-<length>; 
    

    I know that you are new, but you are going to have to read up on the basics of html and css. That will allow you to do two things. One is pose questions using language that other developers will understand. The second is presenting at a minimum, code that is properly formatted. That way even if your terminology is incorrect, your code can speak for you. Right now you aren’t getting any answers because everything is kind of a mess.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm interested in putting together my first online game using Flash as the client
Interested in writing an iPhone app but don't want to buy a mac or
If we put aside the rights and wrongs of putting demo data into a
I'm interested in putting an inset box shadow on something like an iframe. While
I'm interested in using Steve Sanderson’s MvcIntegrationTestFramework or a very similar alternative with ASP.NET
I'm interested in putting together a web framework to emulate a desktop-like window manager.
EDIT Just to clarify, there is no intent of putting this into production. Purely
Interested if anyone has used VSTS Database Edition extensively and, if so, which features
Interested in something similar to JavaScript setTimeout in C on both UNIX and Windows.
im interested how many api calls per second or per minute i can do

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.