Dec 19

toosl you need

intall wordpress on your server

Notepad ( edit text and code)

xhtmlized , css development and xhtml development  need good if not good you can’t fix code

what file you need edit

index.php template file in your Theme’s directory

header.php and footer.php. The Template Tags that include them look like this:

<?php get_header(); ?> <?php get_footer(); ?>
sidebar.phpIt can be included in your index.php
template file with the following template tag
<?php get_sidebar(); ?>
 
The following template files are typical for the main template
(index.php) of a WordPress site:

header.phptheloop.php (The Content)  wp-comments.php

sidebar.php

searchform.php

footer.php
Perhaps your design does not need a footer

this is only basic tutorials no include Special Template

good luck to all ;)

Dec 16

why should you care about having links on Wikipedia? Well, Wikipedia has over 6 millionregistered users, over 11 million internal site pages and receives over 130 million unique visitors eachmonth. It is also the 9th most popular website on the internet according to Alexa.com. So, needless tosay, it has a huge potential to bring in killer amounts of traffic.
When looking for places to add links, keep in mind that some of the most popular Wikipedia pages,such their Search Engine Optimization Wiki, don’t allow editing or external links due to the high rate ofspam being posted.

1.

Go to http://en.wikipedia.org/wiki/Main_Page and do a search for a keyword or topic within yourniche. Then scroll down to the bottom of the page to the External Links section. If you have a valuableresource that fits within the parameters set by Wikipedia you can include a link to it there. A valuableresource can include many things (article, list, directory of something, non-profit organizations and soon).


notes

you can’t put an external link on every single page related to your niche, or you’ll risk beingpermanently banned (more on this later). But you can choose a few handfuls of pages and add yourrelevant link.
Wikipedia can trace your IP address and see every single change you’ve ever made, orthey can trace your username with similar results. Either way, if you make a change to Wikipedia youleave your mark for which anyone else can see.
To edit the External Links simply click on the [edit] link on the right hand site of the Wiki’s ExternalLinks section and add the following code.

*[YourLink YourLinkAnchorText] Your Description]

more tips to help keep your links active

. Only link to something that is specifically relevant to the page you’re placing the link on  and actually enhances it.

Read the rest of this entry »

Nov 11

Looking for free weather icons? Here are some I’ve rounded up for you on All Your Web are Blog to Us.
Read the rest of this entry »

Oct 30

I’m sure we all used to draw on our hands at school, but this guy has taken it to the next level. Strictly no photoshop here; he genuinely paints these images onto peoples hands. It’s a shame to think these beautiful creations only last for a few hours…Really amazing Collection ;)

Beautiful Hand Art

Beautiful Hand Art

Beautiful Hand Art

Beautiful Hand Art

Beautiful Hand Art

Beautiful Hand Art

Beautiful Hand Art

Beautiful Hand Art

Beautiful Hand Art

Read the rest of this entry »

Sep 27

Easter2

Yes, easter is over now, but anyway I want to share with you this beautiful art work from the slovenian artist, Franc Grom.

Easter1

So cute and delicate as a jewel!

Sep 13

Grid based designs is more popular and hot in the internet. A basic well designed grid systems layout can make your designs not only more beautiful and legible, but more usable. A grid is made up of vertical and horizontal lines and is the foundation of nearly every type of visual media. The structure is there to shape the content into proportions that are pleasing to the eye. Below is the top 30 weblogs with grid based designs. Besides, i also searched some tutorials about grid designs for you to further reading.

Read the rest of this entry »

Sep 1

This CSS based rounded corners solutions uses graphics, but … wait for it … they’re generated by a PHP script. Neat.
Even if you don’t know PHP that well, you shouldn’t have too many problems as it’s just one script that is well documented.There’s probably a server strain if you have a high traffic site, but it nothing else, you can use it to create images to use as static images. You just have to turn the cache feature on and the PHP script generates four nifty little rounded corner graphics for you.

Aug 28

One of the major drawbacks of SharePoint themes is you have to reapply the theme to any site that uses your custom theme in order to see any new changes that you have made.  This happens because when you apply a theme to a SharePoint site, a copy of the theme is added for the site in the content database. 

Try it out, open a test site in SharePoint Designer and look at the folder structure in the Folder List task pane.  If you have already applied a theme to this site, you will see a _theme folder. If you have not applied a theme to this site, then this folder will not appear.  Expand the folder and you will see a single sub folder named the same as your theme.  Now go and change the theme the site uses through a browser.  Return to SharePoint Designer and hit F5 to refresh the Folder List.   The _theme folder will appear if you didn’t have a theme applied the first time, and the sub folder under this directory will change to reflect the theme you just applied.

When you make a change to the theme files on the web server, it does not update any copies of the theme that live in the content database.  When you apply a new theme in the browser, it replaces the copy in the content database with a new theme.  That is why you have to physically reapply a theme when you make changes, you have to replace the theme copy in the content database.

From a development perspective, the theme copy in the content database is rather handy.  If you update any of the files in the content database (by changing the CSS files in SharePoint Designer and importing in new images), the changes automatically appear in the browser. Woo-hoo! This just made life easier when it comes to developing themes.

But after you finish up development, you are stuck back with the problem of how to update your theme in the future, especially if it is applied to several sites.  This is where this trick comes in.

Import CSS to Create Editable Themes

Create a copy of the final theme.css file and store it in another location on the web server, such as:
C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\LAYOUTS\1033\STYLES\YOURCUSTOMFOLDERHERE
You can even rename the file, it no longer needs to be named theme.css.

Open the original theme.css file in the custom theme folder, delete out all of the contents, and add an import rule for your new CSS file:
@import “/_layouts/1033/styles/YOURCUSTOMFOLDERHERE/theme.css”;

Save the file and deploy your theme (add text to SPTHEMES.xml and reset IIS).   Apply your new theme to the site.  Now go to the new CSS file in the Styles folder and make a change.   Refresh your browser.  Your change will appear.  That is cool.

By moving around your files and using the import rule  you can create a theme that you can update without reapplying the theme to every site that uses it.  Be sure to update your image paths in your CSS styles to a location where you can edit the images as well, such as:
C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\IMAGES\YOURCUSTOMFOLDERHERE 

Below are a couple of screen shots for the end result of this method.

View of the file structure on the web server

Image showing file structure on the web server

View of the theme folder and the theme.css file that is still in the theme folder

Next Entries »