Super Advanced HTML Tips & Tricks for Squidoo
These html tricks for Squidoo are not really that super advanced. But they are super cool! Anyone can do this, Yes, you too!
This lens would not be possible if it were not for the groundwork of other lenmasters: specifically, Magicality and N376 so they will be getting some link love here. This lens is to expand on their lenses providing some tips and tricks for using HTML within Squidoo that weren't mentioned within their lenses but I have found very useful and think they are way cool.
Expanding on Squidoo HTML
Disclaimer: Use these HTML Codes sparringly
The folks at Squidoo did a wonderful job making the lens layout clean and efficient. These techniches are meant to be used to highlight certain aspects or give your lens just a little flare. Too much flare is never a good thing.
HTML on Squidoo Basics Review
<strong>
Strong Emphasis, appears bolded<b>
Makes Text Bold
<em>
Emphasizes Text
<i>
Makes Text Italic
<a>
<p>
Desginates Paragraph
<br>
Insert text on line below
<img>
Used to insert Images
<ul>
Unordered List (bullited)
<ol>
Ordered List (numbered)
<li>
Needed to start ordered or unordered list
<iframe>
No Longer Supported
Embeds an object
How to use an Image as a repeating Background for your text on Squidoo
This text has a background image applied with a heighth of 100 Pix, the font color changed to white and bolded text. This is not the best example but it works for now!
And here's the html code for you to plug into most any Squidoo Module for the above results:
<p style="height:100px;background-image:url(http://www.askrandell.com/images/logo-squidoo.jpg); color: white; font-weight: bold;">This text has a background image applied with a heighth of 100 Pix, the font color changed to white and bolded text. This is not the best example but it works for now</p>
Simply replace the image URL and paragraph text with your own!
Or use it to set a border for the top and bottom of your lens module with no text like so:
<p style="height:105px;background-image:url(http://www.askrandell.com/images/squidoo-shield.jpg); color: white;"> </p>
Animated Graphics and Squidoo
Of course all of this works with animated gifs just the same
For anything discussed on this page in regards to images, animated gifs work, exactly the same way. Animated gifts can make for some neat borders too or can be aligned the same way any non-animated image can be.
Here's the html code for the border along with html codes for aligning animated images on Squidoo.
Borders - like at the top of this module
<p style="height:80px;background-image:url(http://shutupandmakemeasandwichbitch.com/images/animated-fairy-smiley.gif); color: white;"></p>
Aligned Left
<p align="left">Aligned Left<br><img src="http://shutupandmakemeasandwichbitch.com/images/animated-fairy-smiley.gif"></p>
Aligned Center
<p align="Center">Aligned Center<br><img src="http://shutupandmakemeasandwichbitch.com/images/animated-fairy-smiley.gif"></p>
Aligned Right
<p align="Right">Aligned Right<br><img src="http://shutupandmakemeasandwichbitch.com/images/animated-fairy-smiley.gif"></p>
Using HTML for Solid Colors or Patterns as backgrounds on Squidoo
Of course you can use solid colors or solid color patterns as your backgrounds too. I choose a solid orange because, since the Squidoo layout change, I've kinda missed all the orange. I also set the width property to intentionally be larger than the content area, which is 600px, to ensure that the image runs all the way to the side column and used a bolded blue font.
Here's the code for this:
<p style="height:300px; width:625px; background-image:url(http://www.askrandell.com/images/orange.gif); color: blue; font-weight: bold;">All of the text would be here</p>
Image background that does not repeat
This background image does not repeat.
Notice I changed font color to display on either background
And the code for that would be
<p style="height:50px;background-image:url(http://www.askrandell.com/images/squidoo-shield.jpg);background-repeat:no-repeat; color: green;">This background image does not repeat. </p>
To re-position it like so
This background image is positioned 100 pixels in from the left.
and that HTML code for Squidoo would be:
<p style="height:50px;background-image:url(http://www.askrandell.com/images/squidoo-shield.jpg);background-repeat:no-repeat;background-position:100px; color: green;">This background image is positioned 100 pixels in from the left. </p>
When adding your own images to Squidoo, Don't forget the Alt Tags
Alt tags are text descriptions on web images. These descriptions show up if an image will not display and are accessible to text readers used by visually impaired visitors. Alt Text is important to describe the images, and is one of many factors considered by Search Engines. Remember use them only to describe the image and not fill it with keyword spam. Alt tags are placed like so:
<img src="http://domain/image.jpg" alt="Where you Describe your Image">
Link to a Specific Section of your Lens
Luckily the good folks at Squidoo have "A Names" built when you add modules and publish them for each module within your lens. How on earth world you find the "A Name" Squidoo creates?
It's really rather simple.
- View your lens.
- Either Right Click on the page and click view source or from the file menu at the top click view and then click source. It will display in notepad
- Within the notepad file right click and choose find or click Edit from the menu at the top and then click find and type "What's Here" (without quotes)in the search box. Then click find next
You should see something like this
<h3>What's here</h3>
<ul id="toc-preview">
<li><a href="#module7902664">Expanding on Squidoo HTML</a></li>
<li><a href="#module7905522">Disclaimer: Use these HTML Codes sparringly</a></li>
<li><a href="#module7905579">Basics Review</a></li>
<li><a href="#module7905581">Image as a repeating Background</a></li>
<li><a href="#module7905582">Image background that does not repeat</a></li>
Those titles should look familiar its what's here. - Simply copy the text into your module or customize it to suit your needs.
Like so:
Back to the top
Here's the code
<a href="#module7902664">Back to the top</a>
I just changed the link text but here is the code to #module7902664 which is the "A Name" for "Expanding on Squidoo HTML: or My introduction Module.
Link to a specific Section from another page
Check out My Favorite Decks section of my Magic: the Gathering Lens.
And the code is like this
Check out <a href="http://www.squidoo.com/mtgplayers#module7874587"> My Favorite Decks</a> section of my Magic: the Gathering Lens.
Link to a specific section of Squidflix or Squidwho Lenses
There is no "What's Here" section
Now back on topic. I viewed the source as described above and searched for the module title, in this case it was "Shout out", and found
<div class="module" id="module8075149">
<a href="http://www.squidoo.com/joeyramone-rip#module8075149">comment of my Joey Ramone Lens</a>
Simply use the URL of the lens ended with #ModuleID. The # is important and has to be there.
Embed
Please someone make it work
Squidoo states that <embed> is a tag allowed to be used but for some reason it does not work with anything that I have tried. This could be a very useful tool. It would allow all squidoo lensmasters to embed video (other than youtube) or music into a squidoo lens. I think that would be hella cool and would love to see it work but for some reason it does not. :-(
Tell me what you think or ask for help with your HTML on Squidoo issues
or ask a question about pimping out your own lens
If you would like any help getting some html into your Squidoo lens just let me know. I would be glad to assist you in any way that I can.
In the mean time why not Rate all my lenses or Join My Squidoo-addicts group exclusively for Squidoo Addicts.
foreverme wrote...
Hi, I just dropped by to pick up a bit of code. I've been using your p style tip on my pages and I love it! Hope I can return the favor one day. Have a good one!
Randell wrote...
in reply to prayerhusband
Yes you would have to have some web space to store the image and there are plenty of free image hosting services available, such as Flickr and Image Shack to name a few, which are very user friendly in uploading your images to their servers. Eventually you may be interested in having your own webspace to store images and maybe even your own website, I personally use and recommend Hostgator
See why
prayerhusband wrote...
I don't understand where the images are stored. Sorry, no web or HTML genius here. Obviously I have to have my own website, yes? So I suppose I have to go to some free website place and upload an image. Is that difficult.
Web-challenged (AKA PrayerHusband at squidoo.)
http://www.squidoo.com
I want to add a picture in the middle of the long initial text module of the following website to help reader's eye's take a bit of a break as they're reading it.
/PRAYER_HUSBAND_PRAYER_SHORT_PRAYER_MORNING_AFTER_MORNING
Thanks
PrayerHusband
lefty78 wrote...
Great lens, lots of important info! I will link to this in my lenses
Total Baseball Squidoo Group
How to Display HTML Code on Squidoo Lenses
- < ; will display <
- > ; will diplay >
-   ; is good for spaces or empty paragraph lines
And to get those cool colored backgrounds to ephasize your HTML Code or anything else for that matter simply use the following code:
<p style="background: lightgreen">
Give me some link love
Add the following html code to any of your Squidoo Lenses to show your Love
<a href="http://www.squidoo.com/htmlsquid">Super Advanced HTML Tips and Tricks for Squidoo</a>
Add the above text to any module of your lens to show your love!
Please
Squidoo's Cool Blog
- Automatic Twitter Posting: Automate Your Twitter Account
- Squidoo and Twitter have quite a nice little relationship going.
You can feature your latest Tweets... - Could you run an Offline Squidoo Business?
- Here's an interesting idea. Do a google search right now for driving lessons + your city
For exam... - The Best Squidoo Advice Ever
- Want to be a successful lensmaster?
Be unique.
Want to earn money on Squidoo?
Be honest.
Want to ran... - Getting More Star Ratings With The Magic Of Tim
- Tim ‘thefluffanutta‘, has made many great Squidoo tools. Every one of his creations has...
- Are you making the most of your lenses?
- Are you doing everything you can to earn money from your lenses?
Are you using every opportunity to...
Some other really neat How to Squidoo Videos
The New The Most Important Thing Module - this is what is looks like
The folks at Squidoo did a wonderful job making the lenses clean and efficient. These techniches are meant to be used to highlight certain aspects or give your lens just a little flare. Too much flare is never a good thing. I know I already said it, but it's woth saying twice! ;-)
HTML on Squidoo - Images in tables
Homer Vs. Randell


The Stats
Height: 5'9"
Height: 6'
Weight: 260
Weight: 200
# of items sold on ebay: 0
# of items sold on ebay: lots
# of times sold on ebay: lots
# of times sold on ebay: 0
# of Lenses tagged "homer":26
# of Lenses tagged "randell": 3
And of course here's the code, this is just for the images, for both the left and right, the rest is just a repeat (copy, paste) except replace the img tag with text to be displayed, for each row.
this the first box on the left
<p style="float: left; width: 225px; border: solid 1px black; padding: 2px; margin: 0px;"><img src="http://www.askrandell.com/images/me-simpsons-resized.jpg" width="128" height="201" /></p>
this the second box on the right
<p style="float: left; width: 225px; border: solid 1px black; border-left: 0px; padding: 2px; margin: 0px;"><img src="http://www.askrandell.com/images/homer-resized.jpg" width="128" height="201" /></p>
HTML Made Easy
Hey! If you are looking for a simple beginners guide to HTML written in plain english, look no further. You can buy this right now for just $1.00, yep less than the price of a cup of coffee.
Click Here
More HTML Resources and Guides
Fetching RSS feed... please stand byHTML Books for further Reading
P.S. - Not enough here for you
why not check out some of my other Squidoo Lenses
See how to do this via the Squidoo RSS Module
Fetching RSS feed... please stand byby Randell
A little about me...
I am a website designer, an oldschool skateboarder, computer geek, who... (more)
Related Topics
Favorited By
- FrshCA
- MikeMoore
- shwetashah
- RolandTumble
- angelasstash
- Stacy5370
- Seth1492
- Kelsey-Budden-16
- jjj1
- ToddDaniels
- MiamiWillie
- DutchBlogger
- GypsyPirate
- dvirtualist
- BigGirlBlue
- CDT
- sherriberry45
- Michaud68
- LouAllensEbooks
- bconnor11
- poutine
- awbretire
- Rokstar39
- Handcrafted-Wooden-Pens-and-Gift
- Ezer_Kenegdo
- HRCWebb
- CleoS
- DIYDomain
- wolfie10
- darelief
- See all 164 people







