Home > Tutorial > Blogger Custom Profile
Blogger Custom Profile
Posted on Monday, January 3, 2011 by android apps market for tablests
Blogger comes with a Profile (or About Me) gadget. Your display image and a small description about yourself will be shown in this gadget. However, there are few drawbacks with this conventional gadget. Say you have two or more blogs. One for your family, and another one for your work. Your default profile gadget will be the same for both these blogs. You might not want that, as you might prefer to show different information about yourself on each blog. That's when Custom Profile comes to your rescue.
Another scenario. If you have a team blog, your Profile gadget will automatically turn into a contributors-list gadget. If you want to show individual profile gadget for all (or some) of your contributors, you can use this custom profile gadget. Best part of all, it's so easy to add.
On top of that, you can stylize this gadget as you want. With the default profile gadget, you have to settle for this pre-existing unalterable format. With a custom profile gadget, you can give colors to your text, change 'View My Complete Profile' line to something else, position the contents of your profile however you want, underline/bold/blink certain text, insert table in your profile (what?), add border around text, change display image size, and much much more! Your creativity is the limit.
Another scenario. If you have a team blog, your Profile gadget will automatically turn into a contributors-list gadget. If you want to show individual profile gadget for all (or some) of your contributors, you can use this custom profile gadget. Best part of all, it's so easy to add.
On top of that, you can stylize this gadget as you want. With the default profile gadget, you have to settle for this pre-existing unalterable format. With a custom profile gadget, you can give colors to your text, change 'View My Complete Profile' line to something else, position the contents of your profile however you want, underline/bold/blink certain text, insert table in your profile (what?), add border around text, change display image size, and much much more! Your creativity is the limit.
Step 1:
There are few things that you need prepare before adding this gadget.
1) Your Blogger profile address. You can get this by going to Dashboard (old interface) - View Profile. The address of that page is the address of your Blogger profile.
Example:
2) A profile picture. You must upload this picture somewhere and have its address (yes you can upload to one of your posts). If you want to use your existing profile picture, go to Dashboard (old interface) - View Profile - View Full Size - Remove the '-h' from your address (change s220-h to S220)
Example:
There are few things that you need prepare before adding this gadget.
1) Your Blogger profile address. You can get this by going to Dashboard (old interface) - View Profile. The address of that page is the address of your Blogger profile.
Example:
http://www.blogger.com/profile/15933400802430724429
2) A profile picture. You must upload this picture somewhere and have its address (yes you can upload to one of your posts). If you want to use your existing profile picture, go to Dashboard (old interface) - View Profile - View Full Size - Remove the '-h' from your address (change s220-h to S220)
Example:
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjmSkIV_vLIbsnTRXsxcMB4H6Zm5XDngO-TfwF-s995tAsNMiToMMsHA_jS2DA36zGfkvuKGmOzd9RSHcpAGpWCYbwcJCDZlsC4up66EPHfD_KlCpXyTtxqWN83TGI_IXZkJ3c0SBFST0A/s220/Mylogo.jpg
.
Step 2:
Now that you have all the information that you need, go add an HTML/Javascript gadget.
If you're using the old Blogger interface: Go to Dashboard - Design - Page Elements - Add a Gadget.
If you're using the new Blogger interface: Go to Dashboard - Layout - Add a Gadget
Choose HTML/Javascript - Paste the following content - make necessary configurations (see below) - Save.
Here's an example:
Now that you have all the information that you need, go add an HTML/Javascript gadget.
If you're using the old Blogger interface: Go to Dashboard - Design - Page Elements - Add a Gadget.
If you're using the new Blogger interface: Go to Dashboard - Layout - Add a Gadget
Choose HTML/Javascript - Paste the following content - make necessary configurations (see below) - Save.
<a href="PROFILE_ADDRESS">Configurations:
<img width="80" height="80" src="PROFILE_PICTURE" class="profile-img"></a>
<dl class="profile-datablock">
<dt class="profile-data">YOUR_NAME</dt>
<dd class="profile-textblock">PROFILE_DESCRIPTION</dd>
</dl>
<a href="PROFILE_ADDRESS" class="profile-link">View my complete profile</a>
- Replace PROFILE_ADDRESS in line 1 and 7 with your Blogger Profile Address (see Step 1)
- Replace PROFILE_PICTURE in line 2 with the address of your profile picture (see Step 1)
- Replace YOUR_NAME in line 4 with your name
- Replace PROFILE_DESCRIPTION in line 5 with your description. This is where you input the actual content of your profile. Use <br> to insert a line break (pressing enter will not work).
Here's an example:
<a href="http://www.blogger.com/profile/15933400802430724429">You're done! All you have to do now is customize your gadget however you want it to be (or leave it as it is). See below for some of the common HTML/CSS mods that you can add to your custom profile gadget.
<img width="80" height="80" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjmSkIV_vLIbsnTRXsxcMB4H6Zm5XDngO-TfwF-s995tAsNMiToMMsHA_jS2DA36zGfkvuKGmOzd9RSHcpAGpWCYbwcJCDZlsC4up66EPHfD_KlCpXyTtxqWN83TGI_IXZkJ3c0SBFST0A/s220/Mylogo.jpg" class="profile-img"></a>
<dl class="profile-datablock">
<dt class="profile-data">YoboY</dt>
<dd class="profile-textblock">Introvert alert. Keep yourself to yourself...
<br><br>
My 2011/12 Wishlist:<br>
1) Transformers DOTM Voyager Class Megatron<br>
2) Transformers DOTM Voyager Class Ironhide<br></dd>
</dl>
<a href="http://www.blogger.com/profile/15933400802430724429" class="profile-link">View my complete profile</a>
Customization:
As I've mentioned before, you can do almost anything as the custom profile gadget uses a HTML/Javascript gadget. Of course, you need to use HTML to make these changes. I'll list some of the common ones here.
Colorize your text:
Add a span tag before and after the text that you want to colorize. I'll demonstrate this with an example:
If you have particular customization in mind, leave a comment and I will assist you accordingly. Have fun!
As I've mentioned before, you can do almost anything as the custom profile gadget uses a HTML/Javascript gadget. Of course, you need to use HTML to make these changes. I'll list some of the common ones here.
Colorize your text:
Add a span tag before and after the text that you want to colorize. I'll demonstrate this with an example:
<span style="color: yellow;">This text will be yellow.</span>
This is what the above HTML will do:
This text will be yellow.
This text will be yellow.
Align your text:
Add a div tag before and after the text that you want to align. For example:
Add a div tag before and after the text that you want to align. For example:
<div style="text-align: right;">This text will be aligned to right.</div>
<div style="text-align: left;">This text will be aligned to left.</div>
<div style="text-align: center;">This text will be centered.</div>
<div style="text-align: justify;">This text will be justified.</div>
Result:
This text will be aligned to right.
This text will be aligned to left.
This text will be centered.
This text will be justified.
Decorate your text:
You can make your text blink, underlined, overlined or lined-through. Just add a span tag before and after your text. Example:
You can make your text blink, underlined, overlined or lined-through. Just add a span tag before and after your text. Example:
<span style="text-decoration: blink;">This text will blink.</span>
<span style="text-decoration: underline;">This text will be underlined.</span>
<span style="text-decoration: line-through;">This text will be lined-through.</span>
<span style="text-decoration: overlined;">This text will be overlined.</span>
The results:
This text will blink.
This text will be underlined.
This text will be lined-through.
This text will be overlined.
This text will blink.
This text will be underlined.
This text will be lined-through.
This text will be overlined.
Adjust your font size:
Again, add a span tag before and after your text. For example:
Again, add a span tag before and after your text. For example:
<span style="font-size: 50%;">This line will be smaller than the rest.</span>
.
Result:
This line will be smaller than the rest.
This line will be smaller than the rest.
Add border around text:
As usual, add a span tag before and after your text. For example:
As usual, add a span tag before and after your text. For example:
This line will have a solid RED <span style="border: 3px solid red; padding: 1px;">border around its word.</span>
.
Result:
This line will have a solid RED border around its word.
This line will have a solid RED border around its word.
Resize display picture:
Just change the value 80 in both 'width' and height' in the original code and your profile image will be resized accordingly. For example, I have changed the width and height from 80px to 140px in the code below:
Just change the value 80 in both 'width' and height' in the original code and your profile image will be resized accordingly. For example, I have changed the width and height from 80px to 140px in the code below:
<a href="PROFILE_ADDRESS">
<img width="140" height="140" src="PROFILE_PICTURE" class="profile-img"></a>
<dl class="profile-datablock">
<dt class="profile-data">YOUR_NAME</dt>
<dd class="profile-textblock">PROFILE_DESCRIPTION</dd>
</dl>
<a href="PROFILE_ADDRESS" class="profile-link">View my complete profile</a>
If you have particular customization in mind, leave a comment and I will assist you accordingly. Have fun!
Category Article Tutorial
Powered by Blogger.
Blog Archive
-
▼
2011
(4034)
-
▼
January
(459)
- ANDROID OUTSELLS ALL OTHER MOBILE PLATFORMS
- AHATOUCH, ANDROID PHONE FROM AHA [Huawei IDEOS C8150]
- iPad suddenly can't be switch on
- Movie?Slate (Clapperboard & Shot Log)
- Leaked Info Specification "Blackberry Torch 2" Wit...
- Info Specification Android Phone Product "Ti-Phon...
- Dock 2.0 cracked and Keygen !
- Apple�s Co-founder, Steve Wozniak, Confirms That t...
- [ RELEASED ] E is for Ezra... a thEmE for a causE...
- iPad 2: 1.2Ghz Dual Core CPU, 2 Cameras, No Retina...
- The new Motorola teases Xoom Super Bowl ad
- FakeCarrier App From Cydia Gives You a Verizon iPh...
- Install Windows Phone 7 Theme On Your iPhone [VIDEO]
- �Big Surprise� to be Included With Upcoming GreenP...
- 3D Photo: Transform Your iPhone Photos Into Abstra...
- [Coming Soon To Cydia] Time To Use Your Live Camer...
- LG Optimus 2X and Optimus Black
- Sony Next Generation Portable (NGP) vs. Nintendo 3DS
- Info Price and specification Android "IVIO DE88" ...
- Specification Info For "Blackberry Dakota" New Var...
- MSI's GT680 gaming laptop the world's fastest gami...
- Place Blogger Comment Form Above Comment Blocks
- Robot 2.0 USB Hub Robot
- iCookie buat Anda yang cari iPhone yang Bisa Dikunyah
- Adesso Compagno WKB-2000CB Casing Keyboard untuk iPad
- Cheat Point Blank 31 januari 2011 31012011 Winner[...
- Cheat PB 31 Januari 2011 PheonxUSN� Ver.4 New
- Cheat Point Blank 31 Januari 2011 31012011 Dragon ...
- Cheat Point Blank PB 31 Januari 2011 31012011 SM I...
- GeoHot�s RubyRa1n iPhone Jailbreak Coming After Fe...
- Greenpois0n RC5 coming VERY soon! Support for ALL ...
- Tweak �Dock� Adds A Mac OSX Style Dock To Your iDe...
- Rio And Fox Join Forces To Create A New Angry Bird...
- Rock Out with Black Eyed Peas in Augmented Reality...
- The War of the Worlds for iPad
- Toontastic - Education iPad app
- iPhoto Starts when iPad connected, not iTunes
- Cheat PB 30 Januari 2011 Dragon Special Minimize V1
- RecoveryGuard Stops Accidental iOS Updates For Jai...
- Cheat PB 30 Januari 2011 ALT TAB 30012011
- PS3 Firmware 3.56 Hacked / Jailbroken In Less Than...
- [Update]New Installous 4.1 and AppSync for 4.0+
- Introducing VoiceActivator - awesome new Jailbreak...
- Getting Fit With Hotpot
- SB2Cloud Updated With Support For TinyGrab
- iTunes 10.1.2 is safe for Jailbreaker�s
- Found New untethered Jailbreak Vulnerability
- �CleanStatus� Sanitizes Your iPhone�s Status Bar
- Added a little Note to Sony on the Website
- iPhone Dev Team Confirms RedSn0w 0.9.7b Untethered...
- N.O.V.A 2 Brings Exciting Online Gameplay to the i...
- [New Cydia Tweak] DeepEnd Brings Awesome 3D Effect...
- Future Redsn0w 0.9.7 Update Will Allow You to Unte...
- App Store Now Does Twitter
- Sony Granted Temporary Restraining Order Against G...
- iTunes 10.1.2 Released, Required for CDMA iPhone 4
- PS3 Firmware v3.56 Released, Blocks Custom Jailbro...
- iPhone 5 to Sport Dual-Core Processor � Report
- Monster Dash - Action iPad game
- Highborn HD - Strategy game for iPad
- iPad PhotoBooth app on iOS 4.3 beta
- iPad 2 FaceTime with iOS 4.3
- How to Set Up FaceTime on iPad 2
- How to Enable iPad FaceTime video calling over 3G
- iPad 2 Facetime waiting for activation
- Complete Friday Q&A
- Download Key, Crack, Serial Number SMADAV PRO 2011
- Cheat Point Blank PB 28012011 PKL Injection 7.9 28...
- Cheat PB Point Blank 28 Januari 2011 Patappasa X.1...
- Cheat PB 28 Januari 2011 28012011 Harakiri� 1.9 . ...
- Cheat PB Point Blank 28 Januari 2011 Patappasa X.1...
- Cheat PB 28 Januari 2011 28012011 POINT BLACK.V5
- Asus U36JC A1 Price, Specifications, Advantages an...
- GreenPois0n ready for release! Still no ETA!
- Ultrasn0w 2.2 Coming on February 10 !!
- 3DBoard Brings Glasses-Free 3D Homescreen to iPhon...
- Two Official Facebook Phones in Partnership with H...
- Dead Space Game For Free Will Have You Shaking in ...
- �Cloudy� is a Free Jailbreak Tweak That Will Autom...
- Garage Games
- iPhone Car Kit for $50 from Navigon
- Comex, Pod2g, P0sixninja challenge Apple ios 4.3 j...
- SIM not provisioned on iPad WiFi + 3G
- iPad app quits immediately
- PDF Books graphics don't display on iPad
- Add Self-Timer to iPad 2 Camera
- How to Transfer Camera Roll from iPad to computer
- iPad 2 camera lenses
- Best Evers: Ken Aaron, Photographer
- Apple protocol in ASLR to improve safety and hinde...
- White iPhone 4 Issues Fixed With New Paint?
- Handoff app Pushes web pages from computer to iPad
- iPad 2 Camera Not working, shutter not opening
- How to use iPad Camera Zoom in or out
- iPad Calendar Time Zone Support
- Verizon iPhone hotspot $20/mo and paying $212 for ...
- Apple iPod touch 64 GB (4th Generation)
- Port your existing mobile number to Google Voice
- Port your existing mobile number to Google Voice
- Share Your Photos About Places
-
▼
January
(459)
