Archive for the ‘Dreamweaver’ Category

Jotform creacion de formularios gratuitos

Tuesday, October 7th, 2008

Jotform es una de esas herramientas que nos hacen la vida más fácil. Muchas personas tienen problemas para crear formularios para sus webs. Tienen que estructurar el formulario, validarlo, decidir que método de envío van a utilizar (php, cgi, etc), y otras cosas que de solo pensarlas desaniman a cualquiera.Jotform, sin embargo, hace esta tarea increíblemente fácil. Podemos crear formularios personalizados en un dos por tres, en los cuales podemos incluir desde los campos más básicos como nombre, fecha de nacimiento, listas dropdown y demás, hasta opciones más avanzadas como incluir un botón para solicitar pagos via Paypal, 2checkout y otras conocidas plataformas de pago.

La interfase es sencilla, la configuración muy simple, y al terminar nuestro formulario solo debemos descargar el código y pegarlo en nuestra página web. La información ingresada en el formulario será almacenada en el servidor de Jotform, por lo que ni siquiera vamos a desperdiciar nuestro ancho de banda. Además, los formularios creador en Jotform y publicados en tu web tienen protección contra spam, en ninguna parte de tu formulario aparecerá el logo de Jotform, y tienes 10 MB de espacio en la versión gratuita, que más se puede pedir.

Imagen de Jotform

Bueno, si en realidad deseas más, por $9 mensuales puedes acceder a una cuenta Premium, la cual te da muchas más ventajas, aunque creo que la cuenta básica es más que suficiente para usuarios comunes y corrientes.

Filtro de Estandares para nuestras webs (limpiador de etiquetas innecesarias)

Sunday, August 17th, 2008

HTML Purifier es una librería escrita en PHP5 que filtra nuestro código HTML y lo “purifica” eliminando etiquetas innecesarias o maliciosas en entradas de datos y verificando que el resultado sea válido según las especificaciones del W3C.

Otro punto importante a su favor es que esta también en forma de plugin para algunos de los más conocidos CMSs como:

  • Phorum
  • MODx
  • Drupal
  • Wordpress
  • CodeIgniter

Según su página web es una utilidad:

  • Segura: Remueve el código malicioso (XSS) de las aplicaciones.
  • Limpia: Te asegura un código que sigue los estándares Web.
  • Abierta: Está hecha bajo la filosofía Open Source, esto lo hace altamente personalizable.

Puedes descargarla como una aplicación aparte o guardar en tus favoritos esta demo que estara disponible en su página web.

Hacks para IExplorer,Mozilla y Safari

Sunday, August 17th, 2008

La más común al hacer una página web es que en un navegador se vea bien y en otro se vea diferente, este fenómeno ocurre porque cada navegador interpreta los estándares de una manera diferente incluso en sus distintas versiones, sobre todo en Internet Explorer (IE). Es aqui cuando requerimos la aplicación de diferentes hacks o trucos para que nuestra página funcione bien en los diferentes navegadores.

A continuación veremos unos cuantos trucos, hacks y consejitos a la hora de trabajar con CSS que seguramente nos quitaran un dolor de cabeza en algún momento y nos mantendran dentro de los estándares web.

Image

SELECTORES ESPECIFICOS PARA CADA NAVEGADOR

Estos son unos cuantos selectores que nos permiten cambiar un estilo en un navegador determinado, pero no en los demás.

IE 6 y anteriores:

* html {}

IE 7 y anteriores:

*:first-child+html {} * html {}

IE 7 solamente:

*:first-child+html {}

IE 7 y navegadores modernos solamente:

html>body {}

Navegadores modernos solamente (IE 7 NO):

html>/**/body {}

Versiones recientes de Opera y anteriores:

html:first-child {}

Safari:

html[xmlns*=”"] body:last-child {}

Para usar estos selectores, debes colocarlos despues del estilo que quieres modificar asi:

#cuadro-contenido{
width: 300px;
height: 150px;
}

* html #cuadro-contenido{
width: 250px;
}

Esto anula el estilo y cambia el ancho por 250px en IE6 y sus versiones anteriores
PNG’s TRANSPARENTES PARA IE6

Como bien sabemos IE6 no soporta la transparencia de las imagenes en formato PNG, generalmente saca un recuadro gris que daña todo nuestro diseño. Para que nos funcione la transparencia necesitamos usar un filtro que solo funciona para IE6 aplicando los selectores del punto pasado asi:

* html #estilo-imagen {
background-image: none;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src=”nombreDeArchivo.png”,                     sizingMethod=”escala”);
}

REMOVER RECUADRO PUNTEADO EN LOS HIPERVINCULOS:

Firefox produce un recuadro punteado cuando hacemos click en un link o hipervinculo.

Image

Esto es muy fácil de arreglar, simplemente agregamos la propiedad outline:none en la etiqueta a

a{
outline: none;
}

ANCHO A ELEMENTOS INLINE

Si le aplicas un ancho a un elemento inline, solo funcionará en IE6. Esto es una falla del navegador ya que los elementos inline no deberían necesitar tener un ancho asignado. Sin embargo el asignarselo es algo muy útil por ejemplo si quieres todos los labels de un formulario del mismo ancho.

Todos los elementos HTML son de algun tipo, block o inline. Los elementos inline son los span, a, strong, em, entre otros. Los elementos de tipo block son los div, p, h1, form, ul, etc.

Nosotros podemos cambiar el ancho de un elemento inline. El truco esta en cambiar el elemento de tipo inline a tipo block.

 span {
width: 150px;
display: block
}

Aplicando la propiedad display:block convertimos el span de un elemento inline a uno de tipo block, permitiendonos asi cambiar su ancho. Lo unico que debemos tener en cuenta es que los elementos de tipo block comienzan en una nueva linea por su margen y relleno por defecto, aunque tenemos la ventaja tambien de usar flotaciones si lo requerimos.

CENTRAR UNA PAGINA CON ANCHO FIJO

Para centrar una página web dentro del navegador, aplicale una posición relativa al div contenedor de la página y colocale una margen automática.

#contenedor {
margin: auto;
position: relative;
}

TECNICA PARA REEMPLAZAR IMAGENES

Para cumplir los estándares, siempre es mejor usar texto en los encabezados en vez de imágenes. Pero la mejor practica para poner las imágenes a nuestros encabezados es ubicar la imágen en el fondo con un texto oculto dentro de un div. Esto es muy útil para los lectores de pantalla, para el SEO, lectores de feeds, dispositivos móviles, o si simplemente desactivan los estilos css de nuestra página ya que alli solo se  verá el texto.

HTML:

<h1><span>Main heading one</span></h1>

CSS:

h1 {
    background: url(heading-image.gif) no-repeat;
     }
      
h1 span {
    position:absolute;
    text-indent: -5000px;
    }

Como pueden ver usamos html normal para la etiqueta h1, y con css reemplazamos el texto por la imágen poniendo el texto 5000px a la izquierda, haciendolo invisible al usuario, para probar el efecto visualiza tu página en el navegador y luego desactiva los estilos css.

ANCHO MINIMO

Otro error en IE es que no soporta el atributo min-width. Este es extremadamente útil, especialmente para plantillas flexibles que tienen un ancho de 100% y no queremos que el navegador las contraiga. Para todos los navegadores exceptuando IE6 solo necesitas especificar min-width:Xpx; asi:

.contenedor {
min-width:300px;
}

Para IE6 es un poco más complicado, para empezar nesecitamos crear dos divs, uno dentro del otro

<div class=”contenedor”>
     <div class=”contenido”>Content</div>
</div>       

Indicamos el min-width del div exterior

.contenedor {
min-width:300px;
}

Ahora viene el hack, nesecitamos insertar el siguiente código

* html .container {
border-right: 300px solid #FFF;
}

* html .holder {
display: inline-block;
position: relative;
margin-right: -300px;
}

Cuando la ventana del navegador es redimensionada, el ancho del div exterior se reduce junto con el ancho del borde que no permite que se encoja más de la medida. EL div interno hace lo mismo deteniendose igual a la medida. Asi pues el div exterior define el ancho mínimo para el div interior.

ESCONDER EL SCROLL HORIZONTAL

Para remover la barra de scroll horizontal, debemos insertar la propiedad overflow-x: hidden; en el body así:

 body {
     overflow-x: hidden;
 }

Esto es muy útil cuando tenemos una imágen o una pelicula de flash con un ancho muy largo en el navegador.

Esperamos que pongas en práctica estos trucos cuando te sean necesarios y que te sean de mucha utilidad.

Chicas Stripers y Boys stripers en España!! a que esperas las mejores fotos en www.stripersygogos.com

Wednesday, June 11th, 2008

alicante (1) barcelona (1) boys (2) chica (1) chico (1) contrataciones (1) contratar (3) despedida (3) despedidas (2) drag (1) eroticos (1) girls (1) gogos (4) lesbicos (1) madrid (1) porno (1) precios (1) queens (1) soltera (3) soltero (3) streaper (2) streapers (2) streappers (2) striper (2) stripers (6) stripersygogos (1) strippers (2) tarifas (1) toledo (1) tu (1) valencia (1) www (1) zaragoza (1)

Mas en

Tutoriales de Dreamweaver en Ingles

Tuesday, May 6th, 2008

With the growing popularity of CMS, Wikis and Weblogs, WYSIWIG-editors lose their users. However, many of those editors offer many advantages, such as Integration of SVN, FTP Clients, Developer’s extensions and programming environments. Using them, you can save your time and increase your efficiency. Not every code has to be written in Notepad, not every problem has to be solved manually. Therefore some good starting points for improving your WYSIWYG-skills can be useful.

In the list below we tried to cover some of the most useful references, tutorials, ideas and sketches related to Adobe Dreamweaver (initially called Macromedia Dreamweaver).

You might be willing to use at least some of them for your next projects. Particularly video-tutorials are amazing, don’t forget to check them out.

PS: You might also be interested in

we’ve reviewed recently.

Adobe Dreamweaver Video Tutorials

Tutorials for Beginners

  • Dreamweaver 8 In Pictures
    This tutorial helps beginners learn the basics of creating Web sites with Adobe Dreamweaver 8: Dreamweaver Basics, Utilities, Navigation & Layout, Interactivity, Advanced Layout.
  • Creating Your First Website with Dreamweaver 8
    Macromedia’s Tutorial for Beginners: Part 1: Setting Up Your Site and Project Files, Part 2: Creating a Table-Based Page Layout, Part 3: Adding Content to Pages, Part 4: Formatting Your Page with CSS
  • Dreamweaver MX
    Tutorial for beginners. 9 lectures.
  • Dreamweaver Tutorial - Learn how to use Dreamweaver
    13 basic Dreamweaver tutorials: Dreamweaver installation, Dreamweaver templates, CSS styles, tables, rollover effect. Find Dreamweaver hosting.

Libraries with Dreamweaver Tutorials

Articles, Tips, Tricks

  • Dreamweaver Regular Expressions Are Your Friend
    “A list of regular expressions that you can use in Dreamweaver. To load these expressions, click the folder icon which is directly above and right-aligned with the Find text field. From there, you will be able to load and use these regular expressions. I have no doubt that you will be able to improve upon many if not all of these regular expressions I have put together. Nonetheless, it is a good place to start.”
    Dreamweaver Tutorials - Regular Expressions
  • Dreamweaver as a Rails IDE
    You can use Dreamweaver as a Rails environment. Shaun Andrews explains, how it goes and what you need.
  • Building a DHTML Drop Down Menu with Dreamweaver > Downloading the Project Files
    With DHTML drop-down menus, you can add nice interactivity to your Web site. However, hand-coding DHTML takes time, even for experienced designers. Adobe Dreamweaver helps you incorporate DHTML without having to learn the underlying code. Learn here how to use it.
  • Dreamweaver 8 Does Standards! [Software Tutorials]
    Rachel Andrew about Web Standards, Adobe Dreamweaver and creating standard-compliant web-sites with Dreamweaver.
  • How to edit Wordpress themes using Dreamweaver
    WordPress, like most PHP-MySQL CMS, uses template files to control the appearance of websites. To use Dreamweaver to edit or customize WordPress themes, you need to combine these different PHP files into one page so that you can immediately view, while editing the codes, how the page would appear.
  • How to Create RSS feeds with Dreamweaver
    “In this tutorial I’m going to outline two different styles of content which broadly encompasses the two primary sets of web content that get converted to feeds — Single Pages and Directories. Single pages are single HTML files that contain multiple stories, each of which is treated as a unique entry to be linked to by the RSS feed. Directories contain multiple HTML files, each of which contains a single story and links to each must be entered in the RSS feed. RSS DreamFeeder, once configured, will do all of this automatically for you when you process the feed. You can define multiple feeds for your website and each feed can have its own configuration.”
    Dreamweaver Tutorials - RSS Feeds with Dreamweaver
  • Building a Forum with Dreamweaver
    Building a forum in 4 steps: Part 1: Getting Started, Part 2: User Authentication, Part 3: Posting Messages, Part 4: Replying to Messages
  • Inserting Fireworks HTML into Dreamweaver
    “In this tutorial we are going to insert a table that was created in Fireworks (be sure to check out the Fireworks tutorial on Creating a Navigation Bar). Once we have inserted the Fireworks HTML into our Dreamweaver document, we will add the corresponding links using the Point-to-File method we learned about in an earlier tutorial.”
  • Creating dynamic layers with interactive image rollovers using Dreamweaver
    In this tutorial we are going to use multiple layers stacked over another, and make it viewable, when the mouse is rolled over in an Image
  • HeavyWeightGeek
    “How often do you want to know where one div ends and the next starts in any particular browser. Now you can get the Firefox Web Developer Toolbar. This little DW extension adds a nice span around any content.”
  • My Free PR - Free Extension For Dreamweaver Eases Integration with Google Innovations
    WebAssist’s Dreamweaver Tools for Google makes it easy for small business and Web pros to effortlessly enhance their Web sites with additional functionality.
  • Ades Dreamweaver Tutorials
    Adobe Dreamweaver Tutorials, e.g. Create Rollover/MouseOver effect, Making use of I-Frames, Learn how to structure your pages before the design, Learn how to validate forms with Dreamweaver und viele mehr
  • Build PHP Applications With Adobe Dreamweaver MX [PHP & MySQL Tutorials]
    Over the next few pages, I’ll be exploring the new PHP functionality in Dreamweaver MX, in the hope that you find it useful the next time you have a PHP project to code.
    Dreamweaver Tutorials - Build PHP Applications
  • XML and XSL in Dreamweaver 8
    Learn how to use XML and XSLT in Adobe Dreamweaver.
  • Creating Secure Login Page
    This tutorial will teach you how to make a login page in Dreamweaver MX.
    Dreamweaver Tutorials - Creating Secure Login Page
  • Accessibility Features of Dreamweaver MX and MX 2004
    This tutorial describes the new accessibility features of Dreamweaver MX and MX 2004
  • Customize Dreamweaver to Your Needs [Software Tutorials]
    This article explains a few of the most useful customization tricks which can be achieved by you, the Adobe Dreamweaver user.
  • Dreamweaver 8 Reviewed
    An extensive review of Dreamweaver 8, including Coding Toolbar, Code collapsing, Workspaces, Tag Completion and more.
  • Animation in Dreamweaver
    Macromedia’s Dreamweaver does support animation in a little known inspector call the “TimeLine Inspector”.
  • PHP and MySQL Error
    This article specifically applies if your Dreamweaver cannot see the tables in your MySQL database or you are getting the error “Client does not support authentication protocol requested by server; consider upgrading MySQL client” when you look at a php page in a web browser served from a Windows 2000, XP or 2003 Server.
  • Dreamweaver Image Maps
    Learn how to link to different pages from the same image using image maps in Dreamweaver.
  • Layers
    Creating Layers
  • Dreamweaver Forms
    Tips on customizing input boxes, list menus, submit buttons. Also learn how to validate forms using Dreamweaver behaviors.
  • CSS Text Rollovers
    Try out these cool text rollover effects using CSS style sheets.

Dreamweaver Resources

  • Adobe - Dreamweaver Developer Center
    Dreamweaver Developer Center offers tutorials, samples and related articles as well as news regarding Dreamweaver updates and new features.
    Dreamweaver Tutorials - Dreamweaver Developer Center
  • Dreamweaver Templates
    A reviewed listing of high quality website template companies. These companies produce professional templates for webmasters.
  • Dreamweaver Fever
    Tutorials, Extensions, Articles, Experiments.

Adobe Dreamweaver Extensions

  • Codetch :: Firefox Add-ons
    Get the feel of Dreamweaver in a Firefox extension. Edit your documents right next to your web pages as you surf.
    Dreamweaver Tutorials - Codetch
  • Adobe Dreamweaver Extension Resources
    The official Macromedia extensions site. These extensions have been tested by Macromedia and the list of extensions can be searched by category.
  • Kaosweaver - Home of Dreamweaver Extensions
    An overview of useful and popular Dreamweaver Extensions.
  • Nearly Geek: Introduction
    Subversion for Dreamweaver (SVN4DW) is a Dreamweaver extension that provides easy access to a subversion repository from within Dreamweaver on Windows. SVN4DW currently provides access to the most commonly used SVN functions, and new functions are being added all the time.
    Dreamweaver Tutorials - SVN
  • WordPress Dreamweaver Extension
    WordPress Template Builder (WTBDWE) - this is a WordPress extension for Adobe Dreamweaver. I made this extension to facilitate the development of WordPress templates in Dreamweaver. It has some cool and nice feautres, like special functions, loops, includes, etc. I included most useful by me functions and also some rare functions, which I not known by most WP users.