Does anyone know how i can have one of these floating fields at the end of the screen on my blog? is it a plugin? i would love to have one of these with my facebook like button on my blog!
Screenshot: http://i.imgur.com/DgJbO.jpg
URL: http://thechive.com/2012/01/24/an-ode-to-steak-30-photos/
[No bumping, thank you.]
You can use CSS to position an element like that. Assume the element is a div with an id='myfixeddiv', the relevant part of the CSS would be like this:
#myfixeddiv {
position: fixed;
left: 20%;
top: 60px;
}
Of course, you would need to adjust the positioning for your own site.
hmm isnt their any plugins that does the job? im really bad when it comes to programming and stuff :)
Sorry, no plugin that I am aware of.
hmm isnt there any java script or similar that i can add the the blogs php files?
I gave you the only way that I know.
can you try to describe exactly how i should add this?
so all i need to do is to add this to the ccs file?:
#myfixeddiv {
position: fixed;
left: 20%;
top: 60px;
}
u wrote that i should add some kind of "div" too? what should it be on that code?
I can't tell you what you want to add to your site, only you know that. You may need to hire someone to do that for you. You can post a job request at jobs.wordpress.net.
it is not within the scope of this WordPress forum to teach these basic propgramming techniques -
please ask the question at a genaral webmaster forum;
or learn css and html with one of the many online tutorials.