In my previous post I provided a jQuery and CSS-based solution for styling the first word of all headings in a page differently. Let’s look at a different scenario now where the first character of all headings (say, <h2> this time) in a page are different from the rest of the letters. The jQuery logic [...]
Archive for August, 2010
Recently I faced a problem while doing a wordpress theme modification for a website. The requirement was to give custom footer color for every post or page using the wordpress custom field. I have to create an additional custom field in the admin post page to give the user option to input their favorite footer [...]
It’s seems tough but believe me it’s quiet an easy process if you do understand positioning in CSS.
Here I want to place a simple html list in front of flash animation.
At first, I am writing my html code.
<div id=”main-content”>
<div>
<object classid=”” width=”” height=”” title=”banner”>
<param value=”transparent” />
<param value=”” />
<embed src=”” wmode=”transparent” width=”” height=””></embed>
</object>
</div>
<ul>
<li><a href=”#”>link01</li>
<li><a href=”#”>link02</li>
<li><a href=”#”>link03</li>
<li><a href=”#”>link04</li>
</ul>
</div>
Then [...]
A colleague required a quick solution by which the first word of each heading in her design would be of a different color than the rest of the words in that heading. Using a <span> element for a part of the heading (say, <h1>) and styling it with CSS to apply a different color should [...]
Step-1 Create a new file width-500px and Height-500px
Step-2 Set the background colour as Black ( From the left panel), and Type any text you want to add the effect to, using the Type Tool
Step-3 Select the lasso tool from the left panel
Step-4 Go to the menu bar (usually on top just below menu) and click subtract [...]
If you want to add a Facebook like button in your wordpress blog sidebar, you can use the plugin called “Like-Button-Plugin-For-Wordpress”. This plugin is very easy to use, you just need to install it and you can use it instantly. You don’t need to do any coding to implement this, just go to add new [...]
1. USE META TAGS.
Most search engine will look inside META tags in your web page. Here is the example of how to use <META> tags.
<meta name=”description” content=”How to promote your web site.”>
<meta name=”keywords” content=”announcing web site, web submission, web promote, internet promotions, submit”>
These META tags should be put in <HEAD></HEAD>. In “description”, put the brief [...]
I have found a nice widget for wordpress to show your twitter posts on your blog side bar. The name of the widget is “Wickett Twitter Widget”. You can install it from your wordpress dashboard or you can download it from the net.
This tool is really easy to use. You just need to install the [...]
I was required to create a dashboard from where users would be able to edit certain tabular data. Each row of data had a delete option on the extreme right. If the user wishes to delete an entry from the table, they can simply click on the respective delete button and the entire row would be dropped from the table. This can be achieved with a simple two line jQuery.
