how to make a box blogroll on your blog

1. Blogroll Textarea Box Model
consider how to make it:
Attach the following code into your element (Page Elements --> Add a Gadget --> HTML /Javascript)

<div style="border: 1px solid rgb(153, 153, 153);
overflow: auto;
width: 200px;
height: 200px;
text-align: center; ">
#link1 <br />
#link2 <br />
#link3 <br />
#link...
</div>


description:

- Code width: 200px; and height: 200px; is a measure of the width and length of the box, you can change it and menyesuaikanya with reply size you like.

- Replace the words "# link1, # Link2, link3 dst #" with a list of links you, oh yes it can also be filled with a banner link.

- If you pingin-link list of links lined up, then remove the code <br />



2. Blogroll Box Model Marquee
This box is also able to accommodate many links in narrow places. But the blog roll box is different from the reply box above, because this box does not have a rollbar (which is usually drawn up on the right trus down it). These links or contents in this box will move / walk, can be vertically ato horizontal. Well  how to make:


Attach the following code into your element (Page Elements --> Add a Gadget --> HTML /Javascript)


<MARQUEE align="center" direction="up" height="100" scrollamount= "2" onmouseover='this.stop()' onmouseout='this.start()' width="95%" >
#link1 <br />
#link2 <br />
#link3 <br />
#link...<br />
</marquee>

Description:


- Code "up" it shows the direction of movement, you can replace it with down, left, right


- If you replace it with a horizontal movement (left ato right) then remove the code <br />.


- The number "100" indicates the height of box your blogroll. The more the number the higher the size of the blogroll.

0 comments