Posted on 18 October 2011. Tags: deep linking, Flash, flash ajax, link
Deep linking for Flash and Ajax
SWFAddress is a small but powerful library that provides deep linking for Flash and Ajax. It’s a developer tool, allowing creation of unique virtual URLs that can point to a website section or an application state. SWFAddress enables a number of important capabilities which are missing in today’s rich web technologies including:
Read the full story
Posted in Flash
Posted on 22 February 2011. Tags: link, word press, wp
There are a time we need to put some URL on our WordPress content and make this content clickable. We need to added the link manually or using WYSIWG menu. And this is real pain if we must do this each time we add URL.
Did you know that, WordPress offering functions to make this pain jobs more easier? All need to do is activated the function and let’s WordPress do all the pain jobs
The Functions is make_clickable() and you can find out more here http://codex.wordpress.org/Function_Reference/make_clickable. Read the full story
Posted in PHP
Posted on 02 September 2008. Tags: CSS, link, styles
#CSS ,#CSS a:hover, #CSS a:link,#CSS a:roll, #CSS a:visited{
font-size:12px;
background-color: #FF0000;
color: #FFFFFF;
padding:5px;
margin:2px;
font-weight:normal
}
#supertitle{
margin:10px;
font-size:15px
}
#supertitle a:visited, #supertitle a:Hover, #supertitle a:link, #supertitle A:visited {
margin:10px;
font-size:15px
}
Posted in CSS
Posted on 22 July 2008. Tags: div, link
It’s easy to make any div into a link by using a bit of javascript. You can use this technique to make any div “clickable”. For example, you might want your “header” div to link to your home page. Here’s how it’s done.
<div onclick="location.href='http://www.example.com';" style="cursor:pointer;"></div>
you can make your header div clickable by using this code:
<div id="header" onclick="location.href='<?php bloginfo('url');?>';" style="cursor:pointer;"></div>
Posted in CSS, HTML - XHTML