Image Map
Untitled | Image Map

lunes, 10 de octubre de 2011

Perdonen u.u

Hi guys perdonen que eh estado ausente en el blog he estado muy ocupada pero bueno he vuelto (amo decir he vuelto jaja) ya puse mis reglas y mis forms asique ordenen pliis !!! :DD


domingo, 9 de octubre de 2011

Pedido de Nayara

Hola ya esta tu pedido, me dijiste que sin glitter y los hise sencillos espero te gusten.







Gracias por pedir en SellyEditonsBlog

jueves, 6 de octubre de 2011

Tenemos firmas

Hola mande hacer unas firmas para que cada vez que yo y hopy publiquemos seran nuestras firmas miren son estas:





apoco no estan lindas?
 bueno el credito es para Party Designs

lunes, 3 de octubre de 2011

Pedido de Shaul

Hola aqui esta tu pedido te dejo un regalo extra para que lo tomes le puse la marca de tu mf nose si asi lo querias bueno me dices si o no para correjirlo PD: hace mucho que no hago banners para mf si lo quieres cambiar me dices.


Este es el regalo
da click en las imagenes para tomarlo en tamaño original

Pidan

nadie pide pidan o te pego haha ok naps para ordenar da click en order now o aqui en las etiquetas donde dice order now

Regalos

Hola peoplesita aqui les traigo unos regalos click para tomarlos del tamaño original






domingo, 2 de octubre de 2011

Regalitoos !!! :D

Hola soy Hopy y aqui les traje los regalitos que les prometi 5 blends variados de miley, avril y victoria como son regalos no es necesario que den creditos espero que le guste






ahora hare mi form para que hagan pedidos

sábado, 1 de octubre de 2011

Hi Guys :D

Hola chic@s soy Hopy la nueva co-web miss !! sii muchas graciass Esme por aceptarme la verdad tube un pesimo dia Esme me levantaste mucho el animo :DDD
buenoo luego pondree mi form asii ordernan :D hago todo tipo de recursos y iconcenters se hacer layouts pero por el momento no estoy haciendoo :) luegoo subire algunos regaloss

Diganme su opinion

¿Cómo se ve el reproductor? se ve bien? o lo quito?

Aviso

¡TENEMOS NUEVA CO-WEB! bueno se llama Hopy su web es Glamours Editions ... ya va a empezar a publicar aqui en mi blog. bueno ya bye

Cómo poner brillitos en el cursor?

Es sencillo solo pega este codigo al final o al inicio de tu plantilla de layout: 

<script type='text/javascript'>
// <![CDATA[
var colour="#FFFFF";
var sparkles=40;
var x=ox=400;
var y=oy=300;
var swide=800;
var shigh=600;
var sleft=sdown=0;
var tiny=new Array();
var star=new Array();
var starv=new Array();
var starx=new Array();
var stary=new Array();
var tinyx=new Array();
var tinyy=new Array();
var tinyv=new Array();
window.onload=function() { if (document.getElementById) {
var i, rats, rlef, rdow;
for (var i=0; i<sparkles; i++) {
var rats=createDiv(3, 3);
rats.style.visibility="hidden";
document.body.appendChild(tiny[i]=rats);
starv[i]=0;
tinyv[i]=0;
var rats=createDiv(5, 5);
rats.style.backgroundColor="transparent";
rats.style.visibility="hidden";
var rlef=createDiv(1, 5);
var rdow=createDiv(5, 1);
rats.appendChild(rlef);
rats.appendChild(rdow);
rlef.style.top="2px";
rlef.style.left="0px";
rdow.style.top="0px";
rdow.style.left="2px";
document.body.appendChild(star[i]=rats);
}
set_width();
sparkle();
}}
function sparkle() {
var c;
if (x!=ox || y!=oy) {
ox=x;
oy=y;
for (c=0; c<sparkles; c++) if (!starv[c]) {
star[c].style.left=(starx[c]=x)+"px";
star[c].style.top=(stary[c]=y)+"px";
star[c].style.clip="rect(0px, 5px, 5px, 0px)";
star[c].style.visibility="visible";
starv[c]=50;
break;
}
}
for (c=0; c<sparkles; c++) {
if (starv[c]) update_star(c);
if (tinyv[c]) update_tiny(c);
}
setTimeout("sparkle()", 40);
}
function update_star(i) {
if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
if (starv[i]) {
stary[i]+=1+Math.random()*3;
if (stary[i]<shigh+sdown) {
star[i].style.top=stary[i]+"px";
starx[i]+=(i%5-2)/5;
star[i].style.left=starx[i]+"px";
}
else {
star[i].style.visibility="hidden";
starv[i]=0;
return;
}
}
else {
tinyv[i]=50;
tiny[i].style.top=(tinyy[i]=stary[i])+"px";
tiny[i].style.left=(tinyx[i]=starx[i])+"px";
tiny[i].style.width="2px";
tiny[i].style.height="2px";
star[i].style.visibility="hidden";
tiny[i].style.visibility="visible"
}
}
function update_tiny(i) {
if (--tinyv[i]==25) {
tiny[i].style.width="1px";
tiny[i].style.height="1px";
}
if (tinyv[i]) {
tinyy[i]+=1+Math.random()*3;
if (tinyy[i]<shigh+sdown) {
tiny[i].style.top=tinyy[i]+"px";
tinyx[i]+=(i%5-2)/5;
tiny[i].style.left=tinyx[i]+"px";
}
else {
tiny[i].style.visibility="hidden";
tinyv[i]=0;
return;
}
}
else tiny[i].style.visibility="hidden";
}
document.onmousemove=mouse;
function mouse(e) {
set_scroll();
y=(e)?e.pageY:event.y+sdown;
x=(e)?e.pageX:event.x+sleft;
}
function set_scroll() {
if (typeof(self.pageYOffset)=="number") {
sdown=self.pageYOffset;
sleft=self.pageXOffset;
}
else if (document.body.scrollTop || document.body.scrollLeft) {
sdown=document.body.scrollTop;
sleft=document.body.scrollLeft;
}
else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
sleft=document.documentElement.scrollLeft;
sdown=document.documentElement.scrollTop;
}
else {
sdown=0;
sleft=0;
}
}
window.onresize=set_width;
function set_width() {
if (typeof(self.innerWidth)=="number") {
swide=self.innerWidth;
shigh=self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientWidth) {
swide=document.documentElement.clientWidth;
shigh=document.documentElement.clientHeight;
}
else if (document.body.clientWidth) {
swide=document.body.clientWidth;
shigh=document.body.clientHeight;
}
}
function createDiv(height, width) {
var div=document.createElement("div");
div.style.position="absolute";
div.style.height=height+"px";
div.style.width=width+"px";
div.style.overflow="hidden";
div.style.backgroundColor=colour;
return (div);
}
// ]]>
</script>

Donde dice #FFFFF es el HTML del color de los brillos te recomiendo esta página para ver los html de los colores: http://html-color-codes.info/

Cómo poner cursor de Cruz

Bueno Paz me pregunto oye como se pone el cursor de cruz y aqui esta el code:

<style type='text/css'>
<!--
body { cursor: crosshair}
-->
</style>
Lo pegas al inicio o final de la plantilla de tu layout das guardar y tendras cursor de cruz. Espero hayas entendido sino para ponerte imagenes.

Se Busca Co-Web

Hola chic@s estoy buscando un (a) CO-WEB ya sea hombre o mujer, si quieres ser tu mandame un e-mail a
SellyEditionsBlog@hotmail.com y que diga lo siguiente:
  • Nombre
  • Apodo
  • Pais
  • E-mail
  • Nombre y URL de tu web
  • ¿Qué tipo de ediciones haces?
  • ¿Qué programas usas?
  • ¿Cuantas horas estas onnline?
  • ¿Por qué quieres ser Co-Web?
 

Regalos

Hola chic@s les dejo unas imagenes HQ de Miley Cyrus espero les gusten. CLICK PARA TOMARLAS EN TAMAÑO ORIGINAL.