Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am not a great UI designer, so I thought I'd throw this out to those who are better at designing interfaces that are usable and have the potential to look good.

I have a public page on a site that has a lot of copy (as in copywriting). The section consists of 7 big sections. Each section has many paragraphs, and possibly some images.

Now, the section title is a little unconventional in that they are quite long - they are actually full length questions being asked of the user. I guess the idea is that when they scan over the questions, they will read the paragraphs below if it applies to them.

If I just put all the sections on the same page, the page turns out to be really long. I don't think users are going to scroll down to question 5-7.

I don't see how I can put these "questions" in a conventional "left side bar" menu because it would simply take too much space vertically across the screen.

Does anyone have any suggestions on how to design such a page so that it minimizes or completely eliminates scrolling, allows the user to scan the 7 questions, allows the user to read all the text, etc. very easily?

I can use javascript if I need to. I am just not very creative when it comes to UI, so I don't know what to do. It's not really a question of how - it's more of a creativity problem. I am a server-side programmer LOL.

If you can actually provide a few examples online of successful/profitable sites that demonstrate your solution, that would be a bonus ;)

Thanks!

share|improve this question

3 Answers

You could give each question a header (a short version of the original question) and collapse the long version. With a "+" sign in front of or a "read full question" link below the header you indicate there is more text.

share|improve this answer

I suggest cutting the questions off at a certain number of characters and add "..." to the end. If the user hovers over the text, expand the question. See http://api.jquery.com/hover/ for a start.

share|improve this answer
Well, since this marketing, it's actually pretty important to show the full question. The "..." in this case would be the actual paragraphs - not so much the question. That is actually very important I would gather. :/ – egervari Apr 21 '11 at 7:24

look at following links

  1. http://www.microsoft.com/visualstudio/en-us/products/2010-editions/ultimate
  2. http://office.microsoft.com/en-us/excel-help/create-or-delete-a-pivottable-or-pivotchart-report-HP010089893.aspx
  3. http://support.microsoft.com/kb/2267642

first page : contains links on left, click on link will show content on right.
second page: contains link on top, click on link will take to content, at end of content there is a link to Top third page: simillar to second but content is colapsible.

Also you can use accordian control ( http://docs.jquery.com/UI/Accordion ).
for all above solution you can use norma javascript or JQuery.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.