Posts

Showing posts with the label HTML

How to Create Hyperlink on Blogger Header

Image
Today, I got this question in comment of my previous tutorial on How to Create Hyperlink on Blogger Post . Barbara Fowlds L.Ac. : "Can I put a hyperlink in my header of my blogspot blog and if so how?" My answer is Yes you can. And here's how to do it in the simplest newbie way. Before that, I assume you may wanted to add this hyperlink on your Blogger Header Description because maybe you want to invite your visitor to your business website or any other sites you have. For example, I may like to invite my blog reader to read my art blog at http://artofapogee.blogspot.com and my blog description says something like this: Feel free to visit Art Of ApOgEE Blog to see my arts and order some graphic design books And now we wanna link that blue "Art Of ApOgEE Blog" to http://artofapogee.blogspot.com This is the simplest way. You just have to copy paste and no coding . Here's the step: Open up New Post on you blogger, select Edit Html and type the words there: Se...

Firefox, Safari and IE Compatible CSS min-height

Image
All webmaster should already knows that some CSS code may not compatible from one browser to another. You may noticed that on the CSS code would be a list of redundant code in order to hack this out. However, while surfing today, I found one good simple tricks for min-height and min-width CSS code that is compatible across all common versions of Safari, Firefox and IE. Maybe you already found and use it. I'm posting this for my notes and maybe it could be helpful for others too... The Cross Browser min-height CSS .foo { min-height:100px; height: auto !important; height: 100px; } This works because all of the more recent browsers will understand and respect the min-height setting as well as the !important designation. So in the example above, the block will be given the min-height setting you specify, and the height:auto will take precedence over the height:100px, even though it appears earlier in the code. With content shorter than 100px, the min-height settin...

How to Create Hyperlink on Blogger Post

Image
Well, this time I make a basic simple tutorial. For all advanced geek who read this blog, please ignore this post... I just wanna help myself not to teach the same basic thing on every newbies friends that really need help. OK guys, back to the howto... There are two ways to create a hyperlink on your blog post. One is the simple GUI way and the other is coders way. I prefer the coder way as I can have more control on it. I like to teach by example. So, let say you wanna create a hyperlink on this line of words... You can go here to see my art blog where you wanna link the word "here" to the other page on your blog or on the internet. In this example, I wanna link it to my Art Of Apogee Blog post with the address: http://artofapogee.blogspot.com/2008/03/gimp-best-free-photoshop.html And here is how to do it using both ways... The simple GUI way If you rollover every button on your Compose toolbar, you can see one button called "Link" where the word Link will pop u...