Showing posts with label Header. Show all posts
Showing posts with label Header. Show all posts

Tuesday, 3 November 2009

Best Places To get Free Header For Your Blog(Best on Web)

Lets began without Wasting any time-

1.freewebpageheaders.com
Our page headers are provided under a Creative Commons Attribution-Noncommercial 3.0 License. You can view/download them without logging in; however, you'll need to be logged in to post a comment, rate a photo, or upload your own images... Learn More




 
This post presents the results of the contest — 45 beautiful blog header designs you can use for free. Below the designers have described their themes, intentions and shown us some examples of how header graphics can be used.

 

3.http://www.themeheaders.com/gallery

Theme Headers provides a free service for bloggers and webmasters seeking to personalise their 'out of a box' templates. All our headers are free to alter, so that you can make them individual and match closely to your site.

 
 

 

4.http://www.hooverwebdesign.com/

Web page graphics can be used to dress up an otherwise plain web page. Text is fine but a graphic can visually get across the theme of your website. Graphics can be stock images, vector illustrations or glitter graphics. All of the graphic images below are free to use on your own personal website. These free graphics are sized at 700x150 pixels in width. Enjoy!


5.DatMoney.com


This guy design free header for your blog just write to him about dimensions of header and other details.see his (post) and contact him (here)

6.http://webheader-banner.blogspot.com/

Website headers and banners. Free website header templates and banner templates and blog headers. Free to download 


6.http://www.stockvault.net/  




These are among the best places to find the header images..

If u know more please share.!!

Friday, 16 October 2009

Create Amazing Header images for blogs/websites[freeware] XHeader 1.01

Here is freeware application XHeader which lets you to instantly create amazing headers within a minute and doesn’t require any knowledge of graphics designing. Header images created with XHeaders are really amazing and which makes your blog stand out of crowd.

Features of XHeader 1.01 (Create Instant Header Graphics)

· Create headers from scratch or use the built in templates
· 1000 header styles in the registered (free) version
· Quick and easy header selection from category listings
· Lets you to specify header image size to match with your theme
· Optimization wizard: Quality / file size optimization inbuilt
· Layering – move items in front of & behind other items
· Save your design as a .XHF file & reopen it in the future
· Preview your designs in your default browser
· Video tutorial
· Create shapes such as squares, rectangles, ovals, circles
· Add transparency effects to shapes
· Add your own graphics, logos, etc
· Select a transparent background color for imported image
· Add transparency effects to text
· Add special text effects: glow, emboss, chisel, & outline
· Add drop shadows to text
· Powerful color controls for special effects
SEE SCRRENSHOTS OF HEADER 1.01





Download Link
From:





Enjoy!!And Create Your Custom Header....
Reply back OR Comment If u Like My Posts...
Becoz..Your Appreciation Is My Inspiration!!

Sunday, 11 October 2009

Rotating Header Image[Images changes randomly with each refresh]

Rotating image Header for blogger?

IF you are here finding this question then this might be helpful.
We have a simple enough JavaScript that randomly calls for a new Header banner or Blog background image whenever the Blog is refreshed. This is useful if you have several background pictures which are suitable for your Blog and you want to showcase all of them.
I have used this effect to some extent on this blog.



Demo :Refresh The page(F5) and see a different image on my header.

 Mine CSS code before applying this hack-

body {
    background:#fff url(https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEixscDDtVmsL0N9-jT-ytQMpbpgeTLUUdXr8cx48PgirPqr8hhu6HG8hdk9ZEypK_xDnG-5Z3RfuW-aJACnoqGF46s4QJWo4TtuBzulBJSy0UM-Fd48WLumfQR4BEmUIKSVPu55TR0218Nl/s1600/backgroundbody.png) no-repeat top center;
    color: #4c4b4c;
    font-size: 12px;
    font-family:Arial, Sans-Serif,tahoma, Verdana;
    text-align: left;
    margin: 0 auto 0;
    padding-right: 5px;
}

Basically this script works by overwriting the 'background' definition at the <body> part of the template.

I wrote the following right after the <body> tag:

<script type='text/javascript'>

var banner= new Array()


banner[0]="http://4.bp.blogspot.com/_nqp-0VCwy0c/S9Qhc0IKY0I/AAAAAAAABE0/GTaOyK6gUWc/s1600/finalbg1-11.png"
banner[1]="http://4.bp.blogspot.com/_nqp-0VCwy0c/S9QhghJ3LPI/AAAAAAAABE8/FgvGA7yWXWk/s1600/finalbgtemplate.png"
banner[2]="http://3.bp.blogspot.com/_nqp-0VCwy0c/S9Qhpu1ua9I/AAAAAAAABFE/GB2akCKMHnI/s1600/finalbg1blogidol.png"
banner[3]="http://3.bp.blogspot.com/_nqp-0VCwy0c/S9QwYrzmyCI/AAAAAAAABFM/nrA_RQHzL7A/s1600/finalbgsocial.pngg"
banner[4]="http://3.bp.blogspot.com/_nqp-0VCwy0c/S9QwtPpELfI/AAAAAAAABFU/FVcNvSp-2ek/s1600/finalbg1post.png"
banner[5]="http://1.bp.blogspot.com/_nqp-0VCwy0c/S9QyG-8rn-I/AAAAAAAABFs/88F5R93jZgg/s1600/finalbg1seo.png"
banner[6]="http://1.bp.blogspot.com/_nqp-0VCwy0c/S9QxG0VHGzI/AAAAAAAABFk/3RrrKhHKf9g/s1600/finalbg1help.png"

var random=Math.round(6*Math.random());

document.write("<style>");
document.write("body {");
document.write(&#39; background:url("&#39;   banner[random]   &#39;") no-repeat TOP;&#39;);
document.write(" }");
document.write("</style>");

</script>

What we are doing is actually we are overwriting CSS for my body with this javascript.

Final Note : In my template my body covers  the header image which will not be the case in most of the template.SO you might have to replace .body with #header or #header-inner


Try this trick and tell me if it works for you...!!