ReviewReviewReviewReviewReviewHow to put a Widget in the RailMar 23, '07 7:47 PM
by XXXX for everyone
Category:Other
How to place any object in the rail
or everywhere in the page
If this post looks too much long to read then just try this way:
  • copy the code in the light box (relative at your theme)
  • insert in the code your widget (any object you are able to insert in the welcome box)
  • paste the code in the welcome box
  • play a bit changing the position values (by using the properties: top, left/right)
if you don't know what to do with the red box you get following this procedure then ... read the post ;-)

Thesis:
It is possible to put in the rail any widget that you are able to insert in the welcome box.
(... not bad uh?.. I had written many times that this is not possible ...)

Demonstration:
It is necessary some concept about the layout of multiply , CSS and html ... but nothing of transcendental
I'm not a expert of css and html so forgive me some inappropriate term or definition

the HTML Tag DIV
You can to insert a widget in the welcome box by using the HTML Tag: DIV
simply you must to think the html page like a sequence of boxes;
boxes like a table or simply the tag used for the text:
<p>here _the _text </p>
or used for a link:
<a href="URL">here_the_link</a>
the box I use for to content the widget (or simply a text or some link or an image) is the html tag DIV

<div>
Here_Is_My_Widget
</div>

this code above looks exactly so:

Here_Is_My_Widget

if used in this manner it is a neutral tag .. it is invisible.
experiment inserting this in the welcome box.

Using CSS inline
Now you must to know this:
I have always said to insert the CSS in the custom CSS box and the HTML in the welcome box.
Remember the HTML give the structure of the web page
the CSS give the style of the web page

HTML and CSS are complementary but it exist html without css; do not exist css without html.

Now you must to know CSS can to be added directly into the html istruction;

so if you want to change the style of the div box you can to write the css inline; something like:

<div style="background-color:#CC3366; border:3px solid #000000; color:#ffffff; text-align:center; width:160px;">Here_Is_My_Widget</div>

this looks exactly so:

Here_Is_My_Widget


Displacing the Div Box

Now you must to displace the div box and all his content into the rail...
well you must to know a new CSS property and assignement:

position: absolute;

The default assignement for every object in the html page is position: static;

Definition:

An element with position: absolute is positioned at the specified coordinates relative to its containing block.
The element's position is specified with the "left", "top", "right", and "bottom" properties.

in the definition above our element is the div box containing the widget;
the containing block of the definition is the Welcome Box of the site (applying the code in the welcome box).
we will move our div-box by changing the assignements for the properties top and left (or right):

top: 5px;
left: 15px;

changing the values assigned with the right value. An alternative assignement is this:

top: 0% ;
left: 0% ;


So the definitive code for my widget (just a simple text box) is this:

<div style="background-color: #CC3366; border: 3px solid #000000; color: #ffffff; text-align: center; width: 160px; position: absolute; left: 5px; top: 15px; " >Here_Is_My_Widget</div>

Here_Is_My_Widget

Here I have inserted this code and you see the box in the upper left corner of the post.
If you put this in the welcome .. it come in the upper left of the welcome box.

Kind of layouts on Multiply

now you must to notice this .. in some layout the rail is jointed with the welcome box (and all the other boxez in the welcome)
in some other the position of the rail and the welcome box depend by the size of the page used in the web reader...
just experiment resizing the browser's window.
I dont know the tech term for this two kind of layout sorry.
anyway I'll distinguish between the layout "fixed in the center", for the themes:
Custom Themes, News Paper, Blue Slate, Blocks, Mykonos, Melon, Sandskrit, Petals, Retro, Outburst, Avlack, Red Frog, Shadow Box;
and the "expanded layout", for the themes:
Oasis, Basecamp, SkyLine and Black Lily
Note 1: Retro and Red Frog with a negative value for left assignement;
Note 2 : I have tested this ONLY on the custom theme of the group and with skyline cause I'm becoming lazy
Note 3 : That means that I have assigned one of the two categories for all the other themes simply by observing the layout in the page http://multiply.com/setup/pages/themes



Finally the code for to displace our box is this for the Themes:

Custom Themes, News Paper, Blue Slate, Blocks, Mykonos, Melon, Sandskrit, Petals, Retro, Outburst, Avlack, Red Frog, Shadow Box:

<div style="background-color: #CC3366; border: 3px solid #000000; color: #ffffff; text-align: center; width: 160px; position: absolute; top: 800px; left: 104.35%;">Here_Is_My_Widget</div>


I have added those three properties:

position: absolute;
top: 800px;
left: 104.35%;

Note 1:
The assignements

left: 100%;
top: 0px;

put the box externally to the upper right corner of the welcome box;
experiment this, and from this point change the values.

Note 2:
those assignements are good for the Custom theme; for the other themes you must to consider that anyone has his rail-width and his margins between rail and welcome box so you must to find the right values.

Note 3:
you must to assign the width at your div-box according it to the widget width by using the property Width:

width: 160px;

The height of the div-box is automatically assigned

Note 4:
you see I'm adding the box below the Google ADS
You cannot legally to remove the ADS
thought it is possible to displace that lower

the code for to displace our box is this for the Themes:

Oasis, Basecamp, SkyLine and Black Lily:

<div style="background-color: #CC3366; border: 3px solid #000000; color: #ffffff; text-align: center; width: 160px; position: absolute; top: 800px; right: -188px;">Here_Is_My_Widget</div>

I have added those three properties:

position: absolute;
top: 800px;
right: -188px ;

Note 1:
I use now the right position with a negative value!
do not ask me why =o)



Now just a little interesting digression for the more bold gals and guys...
but this digression is not necessary for applying the widget in the rail


Creating owner class


I could use the classical way for to give a style to my widget box:
simply I use this code in the welcome box (it is html):

<div class="My_Class">Here_Is_My_Widget</div>

and in the custom css box I save this code one (it is css):

.My_Class {
background-color: #CC3366;
border: 3px solid #000000;
color: #ffffff;
text-align: center;
width: 160px;
position: absolute;
left: 104.35%;
top: 800px;
}



from this you look the relation between html and css code;
the use of a separated part for to declare the style allow to make thin the html code
and more it is possible to change the style of a whole site (to all the objects with a class My_Class) only by changing one file (the css file)

Final Note:
I'll appreciate any feed back to get better this post.

IMPORTANT
Start experimenting with a simply text or a link or an image first! do not start adding a chat box or some other strange thingie.
ok?
,,ok ! that's all folks
enjoy it
sure something I've said is wrong ,,, let me know


204 Comments
mariatv wrote on Mar 23, '07
uhmmm I think I'll take first replies tomorrow =o)
iium2000 wrote on Mar 23, '07
thanks a lot for sharing.. this is probably the best tutorial i've read for a while, now..
peace >:-)
mariatv wrote on Mar 23, '07, edited on Mar 23, '07
tnx dear ..
peace
kaedens wrote on Mar 23, '07
ei maria, did u get 30 requests already???? LOL
mariatv wrote on Mar 23, '07, edited on Mar 23, '07
nop =o(
only three
mariatv wrote on Mar 23, '07
but this is one of the most requested impossible things in modify =o)
Comment deleted at the request of the author.
Comment deleted at the request of the author.
mariatv wrote on Mar 24, '07
now the post is complete
luvlyminn wrote on Mar 24, '07
WHAT IS WIDGET
mariatv wrote on Mar 24, '07
un comesichiama
mariatv wrote on Mar 24, '07
it is any object you can add in the welcome box:
text
a link
an image
a chat box
a music player
a clock
a stats counter

any other object you are able to insert in the welcome box ,,,,
zyannadam wrote on Mar 24, '07
my brain's not working well today.. i actually have to read it a few times to understand.. lol... interesting.. might try it later.. after my coffee.. kudos to you.. as alwz..
kaedens wrote on Mar 24, '07, edited on Mar 24, '07


mariatv wrote on Mar 24, '07, edited on Mar 24, '07
graceful place you have choosen =)


the LEEEEEEEVEEEEEEEEELS !
mariatv wrote on Mar 24, '07
my brain's not working well today.. i actually have to read it a few times to understand.. lol... interesting.. might try it later.. after my coffee.. kudos to you.. as alwz..
oh well not is necessary to read all ,,
just copy the code in the light box (for your theme) and insert in the code your widget ,,, then paste it in the welcome box,
then some little change to left and top values .
zyannadam wrote on Mar 24, '07
oh yes.. iv done a test.. woohooo... thanks..
chin001 wrote on Mar 24, '07, edited on Mar 24, '07
can i put a widget below or above the "ads by google" at the right side rail
how? pls help.
Comment deleted at the request of the author.
mariatv wrote on Mar 24, '07
chin001 said
can i put a widget below or above the "ads by google" at the right side rail
how? pls help.
oh well not is necessary to read all ,,
just copy the code in the light box (for your theme) and insert in the code your widget ,,, then paste it in the welcome box,
then some little change to left and top values
let me know if you have some problem
iyamztaipan wrote on Mar 25, '07, edited on Mar 25, '07
havent tried it yet. but ive done copying the codes for skyline...what happens next i can put stuffz here? like...??? how...???
Comment deleted at the request of the author.
mariatv wrote on Mar 25, '07, edited on Mar 25, '07
I have explained any thing in this post ,it is a bit long ,, I know ,,
,,, but you must to read the post cause this is the better explanation I can give!
anyway you are at a good point =o)

if you find some problem ask me




chin001 wrote on Mar 27, '07, edited on Mar 27, '07
Here's the code of the google widget:
script src="http://gmodules.com/ig/ifr?url=http://blog.outer-court.com/homepage/miniweb.xml&synd=open&w=320&h=190&title=Mini+Web&border=%23ffffff%7C3px%2C1px+solid+%23999999&output=js">

i would like to put the said widget below the "ads by google"
nonio wrote on Mar 27, '07, edited on Mar 27, '07
chin ... this code introduce some javascript instruction ... does not work on multiply

before putting any code in the rail you must to verify that the same code works in the normal welcome box
mariatv wrote on Mar 27, '07
more .. remember your rail is about 160 px of width normally ,,, and probably your widget would be 320 pixel of width
......................=open&w=320&h=190&title=Mini+We.......................
mariatv wrote on Mar 27, '07, edited on Mar 27, '07
search in gmodules.com if the widget come with an alternative code
siakyu wrote on Apr 8, '07
it doesnt work. just
Here_Is_My_Widget appears, nothin else.
and Maria, plz tellme. how to make the background static. thx
zyannadam wrote on Apr 8, '07
you are supposed to replace the words "Here_Is_My_Widget" with your own widget codes. Do a test and try replacing it with other words or an image url or something.. you'll get what Maria means..
good luck..
mariatv wrote on Apr 8, '07
:()
tnx Zyanti
a widget is a generic object just to indicate any object you want to put in the rail below the google ads
such as a counter or a chat box or an image or a link
so if you want to put a counter in that position you have to substitute the text here_is_my_widget with the code for to have the counter
note: you have to define the right position of this object ; mine is an example but the position depends by the width of your "widget"



mariatv wrote on Apr 8, '07, edited on Apr 8, '07
for having the background static you have to modify the body section in your custom css code

examining your code you have this for your body section
in custom.css (line 306)

body {
cursor:url(http://s3.amazonaws.com/getg/pub/15429sh.ani), url(http://s3.amazonaws.com/getg/pub/ss/15429sh.gif), auto;
}

in custom.css (line 8)

body {
background:transparent url(http://images.siakyu.multiply.com/image/2/photos/9/orig/1/kens2.JPG?et=zd8SeTVew5nHnxE44bID3Q) repeat scroll 0%;
}

...
now you can write this code at this manner
(I prefer to put all the assignements for a section in the same place ..so it is more simple to modify the code) and you can insert this section where you want in the custom css box..
normally the body section is the first of the css code.


body {
cursor:url(http://s3.amazonaws.com/getg/pub/15429sh.ani), url(http://s3.amazonaws.com/getg/pub/ss/15429sh.gif), auto;
background:transparent url(http://images.siakyu.multiply.com/image/2/photos/9/orig/1/kens2.JPG?et=zd8SeTVew5nHnxE44bID3Q) repeat scroll 0%;
}


well for having the backround fixed you have to change this section so:

body {
cursor:url(http://s3.amazonaws.com/getg/pub/15429sh.ani), url(http://s3.amazonaws.com/getg/pub/ss/15429sh.gif), auto;
background:transparent url(http://images.siakyu.multiply.com/image/2/photos/9/orig/1/kens2.JPG?et=zd8SeTVew5nHnxE44bID3Q) no-repeat fixed top right;
}


copy and paste this



you can find this explained here
http://grouped.multiply.com/reviews/item/7

ehmmm ok
I'll modify better that post to expalin better what means that code


take a look at this post too for the minimal css syntax rules to know
http://grouped.multiply.com/reviews/item/1
mariatv wrote on Apr 8, '07
more simply ,,,,for having the background fixed you have to use

body {
background-attachment: fixed;
}
mariatv wrote on Apr 8, '07, edited on Apr 8, '07
for an example of widget try moving the gif love_41.gif you have in the welcome box


just add this code in your welcome box

<div style="background-color: transparent; border: 3px none #000000; color: #ffffff; text-align: center; width: auto; position: absolute; top: 1000px; right: -186px;"><a href="http://www.bigoo.ws"><img border="0" src="http://images.bigoo.ws/content/gif/love/love_41.gif" /></a></div>


iyamztaipan wrote on Apr 8, '07
if i wanted a particular widget shown way below my page what would be the codes? like say, just above the "viewing history" box. but in the center portion. and can i make that "viewing history" transparent too??? do i ask a lot? wejejejejeje thanks in advance people =D
siakyu wrote on Apr 9, '07
thx u, maria. how careless i am. i just wrong to put 'fixed' after '}', thats why the code didnt work, right?
siakyu wrote on Apr 9, '07
hahaha...how fool i am...ok i got it...thx anyway.
Comment deleted at the request of the author.
mariatv wrote on Apr 9, '07, edited on Apr 9, '07
siakyu said
thx u, maria. how careless i am. i just wrong to put 'fixed' after '}', thats why the code didnt work, right?
yes
anyway I'd try this


background:transparent url(http://images.siakyu.multiply.com/image/2/photos/9/orig/1/kens2.JPG?et=zd8SeTVew5nHnxE44bID3Q) no-repeat fixed center right;



for to anchor the background to the right center of your page
so the image to the right in background remains more visible with all the webreader sizes used by visitors
simplysuria wrote on Apr 10, '07
It really works! Thank you so much!Bouncing
mariatv wrote on Apr 10, '07, edited on Apr 10, '07
eheheheh eh ...... sure ,,,
mariatv wrote on Apr 12, '07
if i wanted a particular widget shown way below my page what would be the codes? like say, just above the "viewing history" box. but in the center portion. and can i make that "viewing history" transparent too??? do i ask a lot? wejejejejeje thanks in advance people =D
,,, sorry ...
I had not viewed your question

for moving the widget you have to change the position
top and left
fore the position left it is simple
with left:0% you have the widget contiguous to the left border of the post
with left:45%; it is in the center (the right value depend by the width of the widget

for the top .. the vertical position .. it is more difficult.

you have to give the right value
such as
top: 1500px

the value depend by the heigth of your main page.

the real problem is
the height of your main page change if you look the page with Intenet explorer or mozilla or other browsers

mariatv wrote on Apr 12, '07
so the object in the rail can to be displaced more up or down with no problems
cause do not perceive the difference in the various webreader
in the center you could find some problem .. the position change dependig by the browser

you have to use
top: 2000px; (you have to find the good value)
left: 50%; (you have to find the good value...about 45%)
mariatv wrote on Apr 12, '07
for the viewing history look this post
http://grouped.multiply.com/reviews/item/19
mariatv wrote on Apr 12, '07
maybe you could to use something like

top:90%;
left:45%;

zyannadam wrote on Apr 13, '07
hey.. u amended the tutorial.. he he..
mariatv wrote on Apr 13, '07
uhmmm ,.,
I have not understood perfectly the functioning
when I have found the way to placing an object in the rail by using this I was really surpriesed
cause it looks perfectly fixed with all the browsers and all the screen resolutions
I did not believed to my eyes :-)

I'd say ...
the positioning is perfect in any position into the box of the post
and externally in the proximity of the post's box
(the rail is in proximity)

the horizzontal position is perfectly fixed
the vertical position could to change depending by the used browser
I have not examined this so deeply :-)
mariatv wrote on Apr 15, '07
,,, with ie6 I cannot see any more the widgets in the rail ...
anyone is experiencing same problem???
Comment deleted at the request of the author.
mariatv wrote on Apr 16, '07
...anyone has the class
user_welcome_message
inside the itembox of the welcome box ?
mariatv wrote on Apr 16, '07, edited on Apr 16, '07
... it is incredible
at this moment if I apply the semi transparencies in

div#mainbox_1 .itembox {
-moz-opacity:0.80;
filter:alpha(opacity=80);
}

the widgets are lost with ie6 ..


,........... HELP :-(
mariatv wrote on Apr 16, '07
,.,.,.,,
anyone is using widgets in the rail as described in this post and
the semi transparencies in the main page?
zyannadam wrote on Apr 17, '07
i am using a widget in the rail and semi-transparencies in the main page.. errr... u dun see any widget there with IE6?.. I dun use IE6 so i can't tell u what i see and didnt see.. :-p
mariatv wrote on Apr 17, '07
mmmh you are using semi transparency in the boxes except the welcome box that it is transparent
such as in my site now
sob ...
it is changed something,.,.,

.,.,.,, it is incredible ,...,.,
in my home page I have removed transparency.. with transparent background I see the object
but here in the group with ie6 the view is cut
,,., so I cannot use semitransparencies in welcome box and in group now I dont view the object with ie6 also if I have removed semi transparencies ..
sigh


please dear
tell me if you see some object in the rail here in the main of the group ,, using ie7



mariatv wrote on Apr 17, '07, edited on Apr 17, '07
and ... ehmmmm Zy... please could you add for a moment (one day just for let me to see it) a background color and semi transparency in your welcome box ??
zyannadam wrote on Apr 18, '07
hey.. u r rite.. i can't see any widgets in IE7. I just notice this.. even the nav bars looks different.. in Firefox they have rounded edges but in IE7.. they are squarish.. hmm..
zyannadam wrote on Apr 18, '07
i changed my welcome box to semi-transparent.. and yes.. the widget was cut in IE.. I shall keep it that way for one day for you to see.. he he.. ok together we say.. "IE SUCKS..!!"
mariatv wrote on Apr 18, '07
yes ,,sucks ,, anyway the widget it was visible with ie too till three days ago
it is changed something in the layout :-(

mariatv wrote on Apr 18, '07
tnk zy It s ok
your site too have the some problem .. you can remove the semi transparency
so now I know not is a problem of my site.

do you see the cbox cut with ie7 too ???


anyway it is inexplicable to me ...
I do not see any connection between transparencies and the widget ...

only I'm sure it is happened three days ago cause some change in the html layout of the page


zyannadam wrote on Apr 19, '07
I hardly use IE so wouldn't hv known if you have not pointed it out..
b1nt4n6 wrote on Apr 23, '07
how add catagory in post : Market and Note
b1nt4n6 wrote on Apr 23, '07
plese info ......sent mesege to my multiply about add catagory post : market and note
lfom wrote on Apr 23, '07
You can't create a Market and Recipes category anymore if you don't have one already. They were discontinued.
You already have a Notes section, but it's hidden:
http://b1nt4n6.multiply.com/notes

Only you and your network can open this link and see the posts (Network Messages). You may add a link to it in your Welcome Message if you want, and to create new posts, use:
http://b1nt4n6.multiply.com/notes/compose
puma1504 wrote on May 3, '07
Maria Mariaaaaaaaaaaaaa
does it really work & won't be kicked because of this??
mariatv wrote on May 3, '07
what?
the problem of some reply above?
puma1504 wrote on May 4, '07
oh I thought about the rail as the Google ads..
joy4manabata wrote on May 10, '07
Maria.
ur great.
puma1504 wrote on May 12, '07
yeppp
mariatv wrote on May 12, '07
the rail is all the section including the headshot and the ads till the bottom of the page
puma1504 wrote on May 12, '07
but how to place an image under the google ads ???
mariatv wrote on May 12, '07, edited on May 12, '07
the position of the widget is determined by
top 800px;

in this code

<div style="background-color: #CC3366; border: 3px solid #000000; color: #ffffff; text-align: center; width: 160px; position: absolute; top: 800px; right: -188px;">Here_Is_My_Widget</div>
puma1504 wrote on May 12, '07, edited on May 12, '07
ReviewReviewReviewReviewReview
Here_Is_My_Widget


& here is my widget is the url of the pic ? thank u so much
puma1504 wrote on May 12, '07
I am sorry it did not work for me. no image under the google ads.
mariatv wrote on May 12, '07, edited on May 12, '07
uhmm sorry you have to use the other code :o))))

<div style="background-color: #CC3366; border: 3px solid #000000; color: #ffffff; text-align: center; width: 160px; position: absolute; top: 800px; left: 104.35%;">Here_Is_My_Widget</div>

to add in the welcome box
you find the right position by adjustments to the top and left values using the preview tool
puma1504 wrote on May 15, '07
so can I have small images (lets' say) under the G. ads ??
mariatv wrote on May 15, '07
did u try the code in the previous reply?
puma1504 wrote on May 15, '07
mariatv said
to add in the welcome box
getting complicated, why into the welcome box? just being curious.
puma1504 wrote on May 15, '07
mariatv said
did u try the code in the previous reply?
WOW
OMG
HOW DO U KNOW THAT?
GENIOUS MARIAAA !!!
mariatv wrote on May 15, '07, edited on May 15, '07
for your image try this

<div style="border: 3px solid #000000; background-color: transparent; color:#FFFFFF; text-align: center; width: 100px; position: absolute; top: 880px; left: 114.3%;"><a title="Myspace Graphics" href="http://www.glitter-graphics.com"><img width="100" height="100" border="0" alt="myspace layouts, myspace codes, glitter graphics" src="http://dl3.glitter-graphics.net/pub/35/35513fe1tsmgzrv.png"/></a></div>


you can add this code in any place you can add html
in the other boxes or in the title
NOT in the title of your group ,, you know why ;-)
in reply boxes or in posts too

just you have to know
the positions top and left refer the top-left corner of the box where you are inserting the code as
top:0px; left:0px;

puma1504 wrote on May 15, '07
sorry the other worked already -- so why to bother it?
GRAZIE MILEEEEEEEEEEEEEEEEEEEEEEEEEE
jnamakulit wrote on May 21, '07
ive done this since even before seeing this post.. nice one maria.. really nice..
can i just ask.. i know this sounds crazy but can i put the midget over the place where the google ads are? hahaha as like covering it? hahaha

crazy..
jnamakulit wrote on May 21, '07
lols aright, i tried doing it-covering the ads with an image but it wont work! hahaha you can place your widget anywhere, even on the area of the google ads BUT it WONT cover it because the google ads is ALWAYS on TOP of any other things on the page.. hahaha silly me..
mariatv wrote on May 21, '07
yeah I know
ehehhehe

there are many tricks to remove google ad

but this is a clean group
lol
mariatv wrote on May 21, '07, edited on May 21, '07
so tell me why this trick doesn't works with ie6 if I use
the semi transparencies
( the post http://grouped.multiply.com/reviews/item/6)

just in the home of this group ,, the widgets in the rail are not visible with ie 6 cause of the opacities sigh :o(

---
puma1504 wrote on May 23, '07, edited on May 23, '07
NO REMOVING GOOGLE ADS
otherwise why to be here for free ???
ba70xs wrote on May 31, '07
what about this widget
create your own slideshow
is it fit in?
mariatv wrote on May 31, '07
yes
you can to use it



create your own slideshow

ba70xs wrote on Jun 1, '07
but that widget is too big under google ads. how to fit in? thanks
mariatv wrote on Jun 1, '07
sure ...do u have noticed I have put it in column?
mariatv wrote on Jun 1, '07
use this






create your own slideshow





<div align="center">
<div style="background-color:transparent; border:3px double #000000; width:100px; padding:15px; ">
<a href="http://www.picturetrail.com/misc/counter.fcgi?link=http%3A%2F%2Fwww.picturetrail.com%2Fwebpages%2Fabout-photoflick2.shtml&cID=909"><img border="0" src="http://pics.picturetrail.com/res/pflicks/pt.gif" /></a>
<br />
<a href="http://www.picturetrail.com/misc/counter.fcgi?link=http%3A%2F%2Fwww.picturetrail.com%2FphotoFlick%2Fsamples%2Fpflicks.shtml&cID=910"><img border="0" alt="create your own slideshow" src="http://pics.picturetrail.com/res/pflicks/ptcreateflick.gif" /></a>
</div>
</div>



mariatv wrote on Jun 1, '07
or this removing the border

<div align="center">
<a href="http://www.picturetrail.com/misc/counter.fcgi?link=http%3A%2F%2Fwww.picturetrail.com%2Fwebpages%2Fabout-photoflick2.shtml&cID=909"><img border="0" src="http://pics.picturetrail.com/res/pflicks/pt.gif" /></a>
<br />
<a href="http://www.picturetrail.com/misc/counter.fcgi?link=http%3A%2F%2Fwww.picturetrail.com%2FphotoFlick%2Fsamples%2Fpflicks.shtml&cID=910"><img border="0" alt="create your own slideshow" src="http://pics.picturetrail.com/res/pflicks/ptcreateflick.gif" /></a>
</div>
mariatv wrote on Jun 1, '07
ah ,,,,, this other one ....






uhmmm it depends by the content ...
the size are assigned in the code ..
you see it

you could put a smaller width ,, but I dont know the content ..
not is visible now !

mariatv wrote on Jun 1, '07
you have to create a slide show with the rite size

normally the rail width is 159 px
mariatv wrote on Jun 1, '07
otherwise you have to create a theme with a bigger rigth rail
mariatv wrote on Jun 1, '07
uhmmm maybe the first it was your personal banner in the replies ehehhe
badchick804 wrote on Jun 8, '07, edited on Jun 8, '07
how can i add this widget in my rail? it works in hte welcome box but i want to put it iin the rail..pls help

width="130px" height="58px" id="InsertWidget_fdf27d0d-88c5-4465-9774-1c1b244e3a05" align="middle">








mariatv wrote on Jun 9, '07, edited on Jun 9, '07
take a look the the post above
there are two light boxes with the code
choose one depending by the theme u are using.
and paste the code where is here_is_my_widget
Comment deleted at the request of the author.
clapicusrein wrote on Jun 12, '07
can ask maria how i could place an image on the top of my rail... i tried pasting the code but im not sure where exactly i could place the code...
mariatv wrote on Jun 12, '07, edited on Jun 13, '07
in the welcome box
the widget will be visible only in the main page

for to have a widget visible in all the site the only place where to add the html is in the site title box