Banner http://technotip.org A Blog For Bloggers Fri, 10 Jul 2009 08:40:27 +0000 en-US hourly 1 https://wordpress.org/?v=6.8.3 9687185 College Forum Logo/Banner Design http://technotip.org/college-forum-logobanner-design/ http://technotip.org/college-forum-logobanner-design/#comments Tue, 07 Apr 2009 12:09:50 +0000 http://technotip.org/?p=2190 I was looking through many of the contests going on around the blogosphere, and many mails hitting my inbox offering free logo designs. But I am satisfied with my present logo design. Its probably because the present logo of Technotip.org was designed by myself and I might be biased because of that. Anyway, if you … Continue reading "College Forum Logo/Banner Design"

The post College Forum Logo/Banner Design first appeared on Technotip.org.

]]>
I was looking through many of the contests going on around the blogosphere, and many mails hitting my inbox offering free logo designs. But I am satisfied with my present logo design. Its Logo-Technotip.orgprobably because the present logo of Technotip.org was designed by myself and I might be biased because of that. Anyway, if you feel the logo as not so good, then feel free to comment below this article, so that we can take a closer look.

Today I wanted to share the logo’s/Banners, that I had designed long back when I was studying my degree(BCABachelor of Computer Applications). We had the plan of starting the college forum, and the logo/banner(both logo and banner are same for my college people, they just shrinked the size of the banner and called it as logo! So I will use these two words alternatively, eventhough they are different!) designing responsibility fell on me. At that time I dint know anything about designing, photoshop etc, but still agreed and managed to design some awesome logo’s. It is when I learnt a lot of things about logo designing.

Here are some of the logo’s: It will take some time to load, your patience appreciated. Thanks
Emulous-innovative-minds-B.I.H.E-college

Emulous-innovative-minds-B.I.H.E-college

Emulous-innovative-minds-B.I.H.E-college

Emulous-innovative-minds-B.I.H.E-college

Emulous-innovative-minds-B.I.H.E-college

Emulous-innovative-minds-B.I.H.E-college

Emulous-innovative-minds-B.I.H.E-college

Emulous-innovative-minds-B.I.H.E-college

Emulous-innovative-minds-B.I.H.E-college

Emulous-innovative-minds-B.I.H.E-college

Emulous-innovative-minds-B.I.H.E-college

Emulous-innovative-minds-B.I.H.E-college

Emulous-innovative-minds-B.I.H.E-college

Emulous-innovative-minds-B.I.H.E-college

Emulous-innovative-minds-B.I.H.E-college

Emulous-innovative-minds-B.I.H.E-college

Emulous-innovative-minds-B.I.H.E-college

Emulous-innovative-minds-B.I.H.E-college

The banners are designed with the dimensions: 1024 x 742. So click on the above banners to view full screen.
Also please use the below comment section to comment about the banner design, also mention which one you like the most.

Our College name is B.I.H.E(Bapuji Institute of Hi-Tech Education) Place: DAVANGERE. Forum name: Emulous(meaning: Eager or ambitious to equal or surpass another). Course: BCA

Hi SATISH

  • Stay Tuned, we are coming up with a awesome announcement, that you will love!

  • "60+ Ways To Increase Your Twitter Followers" -- Please (review)Stumble and Tweet

  • ”Tips, Tricks and Strategies to Make Money Online” Free ebook

  • Click here to download Yaro Starak's FREE video tutorial.


©Technotip.org, - visit the blog for more great content.

Support us by visiting the blog and leaving your valuable comment.

The post College Forum Logo/Banner Design first appeared on Technotip.org.

]]>
http://technotip.org/college-forum-logobanner-design/feed/ 11 2190
Code To Show 125X125 Ad Banner On WordPress Sidebar http://technotip.org/javascript-125x125-ads-on-sidebar/ http://technotip.org/javascript-125x125-ads-on-sidebar/#comments Thu, 05 Feb 2009 09:44:39 +0000 http://technotip.org/?p=1138 During the early days of this blog, we had some problem in showing adsense ads of 125×125 format on our sidebar. We wanted to have four 125×125 ad banners(as shown in below image), but we were unable to align it properly. After some research and getting help from online friends we could overcome this problem. … Continue reading "Code To Show 125X125 Ad Banner On WordPress Sidebar"

The post Code To Show 125X125 Ad Banner On WordPress Sidebar first appeared on Technotip.org.

]]>
During the early days of this blog, we had some problem in showing adsense ads of 125×125 format on our sidebar. We wanted to have four 125×125 ad banners(as shown in below image), but we were unable to align it properly. After some research and getting help from online friends we could overcome this problem. Now we are sharing this, in order to save some of your time, who may also be facing the same problem.

Advertise here

Its easy to show image ads(direct advertisers ad banner) in the side bar. But if we want to show ads using some adnetwork(Ex:- Adsense, Adbrite, Bidvertiser, BuySellAds etc), its bit difficult to properly align the ads(as shown in above image).

First the simple one. If you want to show some ad banners(which does not use JavaScript or any other scripts). You can use the following code:

Sponsors



insert title


insert title


insert title


insert title

But the same can’t be applied when you want to show some JavaScript enabled ads(Ex:- Adsense, Adbrite, Bidvertiser, BuySellAds etc) in above mentioned style.
To do that, add below code to your style.css

.bigblock {
width: auto;
height: auto;
padding: 15px;

}

.left-top {
width: 125px;
height: 125px;
background: url(images/125x125.jpg) no-repeat;
margin-bottom: 10px;

}

.left-bottom {
width: 125px;
height: 125px;
background: url(images/125x125.jpg) no-repeat;
}

.right-top {
float: right;
width: 125px;
height: 125px;
background: url(images/125x125.jpg) no-repeat;

}

.right-bottom {
float: right;
width: 125px;
height: 125px;
background: url(images/125x125.jpg) no-repeat;

}

.clearblock {
width: 100%;
clear: both;
}

Now insert below code wherever you want to show the ads(Ex:- sidebar)

Ad code
Ad code
Ad code
Ad code

That’s it, you are done. You can play with above coding to customize it further to blend with your blog design.
Hope it helps, atleast for some of you.

Hi SATISH

  • Stay Tuned, we are coming up with a awesome announcement, that you will love!

  • "60+ Ways To Increase Your Twitter Followers" -- Please (review)Stumble and Tweet

  • ”Tips, Tricks and Strategies to Make Money Online” Free ebook

  • Click here to download Yaro Starak's FREE video tutorial.


©Technotip.org, - visit the blog for more great content.

Support us by visiting the blog and leaving your valuable comment.

The post Code To Show 125X125 Ad Banner On WordPress Sidebar first appeared on Technotip.org.

]]>
http://technotip.org/javascript-125x125-ads-on-sidebar/feed/ 26 1138
Merry Christmas — Winners of the Giveaway Announced http://technotip.org/winners-of-the-giveaway-announced/ http://technotip.org/winners-of-the-giveaway-announced/#comments Thu, 25 Dec 2008 11:24:46 +0000 http://technotip.org/?p=1419 Merry Christmas to all of you..and an advance Happy New Year. We are excited to announce the winners of our 200$ giveaway. 1. First of all, thanks for all who wrote about the contest on their blog and helped us spread the words around. 2. We also want to thank all our participants. 3. Almost … Continue reading "Merry Christmas — Winners of the Giveaway Announced"

The post Merry Christmas — Winners of the Giveaway Announced first appeared on Technotip.org.

]]>
Merry Christmas to all of you..and an advance Happy New Year.

technotip-christmas-logo

We are excited to announce the winners of our 200$ giveaway.

1. First of all, thanks for all who wrote about the contest on their blog and helped us spread the words around.

2. We also want to thank all our participants.

3. Almost 30% of the people were not qualified for the contest, as they forgot to verify their subscription.

We randomly choose 4 lucky winners and have already sent a mail to them, requesting 125 x 125 ad banners and the link.

So here are the winners..

1. Amit Banerjee

2. 123FeedReader

3. Digisteps

4. StyleIcon9

Congrats to all the winners.

We have sent email to all our winners and waiting for the reply, to know your real name and URL of your blog.

This was our first giveaway(Very small giveaway) on this blog and we learn’t a lot with this contest. So we will comeup with new and improved(with better gifts) giveaway soon.

Merry Christmas and a Happy Happy Happy New Year to all of you.

Hi SATISH

  • Stay Tuned, we are coming up with a awesome announcement, that you will love!

  • "60+ Ways To Increase Your Twitter Followers" -- Please (review)Stumble and Tweet

  • ”Tips, Tricks and Strategies to Make Money Online” Free ebook

  • Click here to download Yaro Starak's FREE video tutorial.


©Technotip.org, - visit the blog for more great content.

Support us by visiting the blog and leaving your valuable comment.

The post Merry Christmas — Winners of the Giveaway Announced first appeared on Technotip.org.

]]>
http://technotip.org/winners-of-the-giveaway-announced/feed/ 8 1419
Traffic strategies: PART 2(Add RSS feed signature to your emails) http://technotip.org/traffic-strategies-part-2add-rss-feed-signature-to-your-emails/ http://technotip.org/traffic-strategies-part-2add-rss-feed-signature-to-your-emails/#respond Thu, 25 Sep 2008 21:08:21 +0000 http://technotip.org/?p=759 We write emails to our friends, relatives, anonymous people around the world etc. Many of the people with whom we communicate may already be knowing about our blog and there is a high chance that they already are our subscribers. But still adding RSS feed signature or adding the “Headline Animator, which displays rotating headlines” … Continue reading "Traffic strategies: PART 2(Add RSS feed signature to your emails)"

The post Traffic strategies: PART 2(Add RSS feed signature to your emails) first appeared on Technotip.org.

]]>
We write emails to our friends, relatives, anonymous people around the world etc. Many of the people with whom we communicate may already be knowing about our blog and there is a high chance that they already are our subscribers.
But still adding RSS feed signature or adding the “Headline Animator, which displays rotating headlines” will bring some traffic to our blog, as it shows our old article titles and they might be interested to know more and they may endup clicking on the title and visiting your site. Anyway, adding a small piece of code doesn’t hurt or take a lot of time.

Technotip.org

Feedburner has got this feature and you can integrate the small piece of basic HTML code to get the animated banner. But the limitation here is, you can see only five most recent items cycling through your feed’s. To over come this you can use some other RSS widgets, but while selecting see that these widgets are created only using basic HTML(for faster loading and user experience).

To use Feedburner animated banner feed as your email signature in Yahoomail, follow these simple steps:-
yahoo-signature
1. Log into your Yahoo! mail.
2. Click on Options.
3. In the “Management” section, click on the Signature option.
4. Drag and drop your Feedburner animated banner and click on “SAVE“.

If you want this email signature in Gmail, then you have to take some more steps:-
Gmail currently doesn’t allow us to add HTML codes directly into emails. But there are always some workarounds to get our work done!
Actually, you can over come the Gmail signature limitation by using Gmail’s POP3/SMTP features by making use of standard email program (Outlook, Thunderbird, etc.), create a signature in that email program that has your Headline Animator in it, and send your emails through your Gmail account. This is an easy task for those who are already using Outlook etc software.

But for people who are not using such email programs and who are not willing to use such things, there are some other solutions:-
To use the animator in Gmail, all you need is the “Better Gmail” Firefox extension. It adds a check box in your gmail account settings to enable HTML. Remember you must be using “Mozilla Firefox” only to get this to work.
I think everyone needs to give this Firefox extension a try. It also adds many cool features to your gmail, like:- Add Google Calendar link, Add Google Reader “Feeds” link, Air Skin, All pages’ mailto: links compose in Gmail, Attachment Icons, Attachment Icons (Bigger!), Conversation Preview, Attachment Reminder(now integrated in Gmail by Google), Date Search, Filter Assistant, Fixed Font, Folders4Gmail(Great isn’t it?), Force encrypted Gmail connection (https), Forward Thread, GrandCentral Voicemail, Integrate Google Reader, Mail.app(Mac-like skin), Show disk usage as progress bar, Signature Settings: Float/HTML/No dashes, Smart Read Button, Super Clean Skins, TinyURL selected link (Cmd+Shift+T), Unlabeled Message Search etc etc etc etc… So here is the link to download “Better Gmail”.

Drag and Drop:-
One more option to use with Gmail, Yahoomail, hotmail or anyother mailing service is, just drag and drop the widget at the bottom of your email and it will be working fine. But it requires you to do it manually all the time you send an email. Many people follow this simple drag and drop work, as this would provide us with the option of when to add and when not to add the email signature(with feed banner).
Copy the HTML codes generated in Feedburner(animated banner creation) and paste it in a notepad and save it on your hard disk with file name ending with .html. Run it(by clicking on the html file) whenever you write an email. Now drag and drop the animated banner into your email. Its that simple..

It seems like- “this method will not bring any traffic”, and its partly true. As you will not get heavy traffic out of this method. To get more traffic, you must be active in mail groups like yahoogroups, gmail groups etc and you should be sending interesting emails to a group with large number of users. This will surly bring some traffic, as people may forward that email to their friends and then their friends may mail it to their friends…like this, your email(along with your email signature) will reach many people and you may get many visitors and they may even signup to your RSS/email feeds and may become your loyal visitors(but please keep your fingers crossed!). Do not expect a heavy traffic from this method, which dries up your blogs bandwidth.

And another thing I want to mention here before ending this article, is, never think that your emails are marked as SPAM because you are using some HTML codes in your email messages. This will not happen, as today’s email systems has gone far from the basic text, to a high multimedia messaging. So no email service provider is going to mark you as a SPAMMER, for using some basic HTML in your email.

Hi SATISH

  • Stay Tuned, we are coming up with a awesome announcement, that you will love!

  • "60+ Ways To Increase Your Twitter Followers" -- Please (review)Stumble and Tweet

  • ”Tips, Tricks and Strategies to Make Money Online” Free ebook

  • Click here to download Yaro Starak's FREE video tutorial.


©Technotip.org, - visit the blog for more great content.

Support us by visiting the blog and leaving your valuable comment.

The post Traffic strategies: PART 2(Add RSS feed signature to your emails) first appeared on Technotip.org.

]]>
http://technotip.org/traffic-strategies-part-2add-rss-feed-signature-to-your-emails/feed/ 0 759