How to Make an IMVU Text Scroller

When you create a text scroller on your IMVU profile, a box with a scrollbar appears inside one of your panels. This scrolling text box is ideal for creating sections that have a lot of text or images because it takes up less space on your page, and visitors use the bar to conveniently see all of your content. HyperText Markup Language (HTML) provides the code that performs this task. Use the tools in your IMVU account to add the HTML that makes a text scroller.

Instructions

    • 1

      Log in to your IMVU account and click your avatar name in the upper left corner of the menu bar.

    • 2

      Click an "Edit" button in a desired panel, such as My Groups, on your profile page. Click the "Edit custom HTML/CSS" link in the drop-down list to bring up the text box where you enter your code.

    • 3

      Enter the following div code in the text box:

      <div style="overflow: scroll; height: ; width: ;">

      </div>

      Setting the overflow attribute to "scroll" makes a scrollbar appear on the bottom and right sides of your box.

    • 4

      Type a number in pixels after the height and width entries to make the div element the size you want. Your complete code now looks like this example:

      <div style="overflow: scroll; height: 300px; width: 200px;">

      </div>

    • 5

      Type HTML tags, such as "<p></p>," between the div elements to create an area where you enter your content that appears in the scrolling text box. To illustrate:

      <div style="overflow: scroll; height: 300px; width: 200px;">
      <p>This is your scrolling text box content.</p>
      </div>

    • 6

      Click the "Save" button at the bottom of the panel box. The scroller now appears on your profile.

Related Searches:

References

Resources

Comments

Related Ads

Featured