How can I remove hyperlink?

How do i remove hyperlink (unlinking) from h3 post title at blogger?

  • I thought the problem at this scribt i dunno how to change it into unlinking. http://www.bloggertipandtrick.net/2009/04/how-to-remove-links-from-header-and.html

  • Answer:

    As many of you know, the link element in every column is set by default as an underlined text. So, every time your mouse pointer is moved to the text link, the text will appear differently as underlined text. But, for some of you who don't really like that to happen to your blog, you can now have a full authority to remove underline hyperlink from the hyperlink element by adding a new property inside the CSS styling that controls the link element. Okay, if you are interested with that idea, here's how to do that. 1. Sign in to Blogger account Firstly, now go to Blogger and sign in to your account. 2. Go to Edit HTML In the Dashboard, now press the Layout/Design button of your chosen blog, and then, switch the sub-tab to the Edit HTML. 3. Find the Code Now find the code below (Ctrl + F): ]]></b:skin> 4. Copy and Paste the new CSS styling to remove underline hyperlink I assume that right now, you want the link element in the post area to appear without underline when being mouseovered (hover link). Okay, after locating the code section on number 3 above, now copy the new CSS styling below and then, paste it before the code section ]]></b:skin> in your blog template to remove underline hyperlink. .post a { text-decoration:none; } .post a:hover { text-decoration:none; } .post a:visited { text-decoration:none; } As you can see in that CSS above, i've already created 3 new CSS classes to remove underline hyperlink, that later, will also control the interfaces of the standard, mouseover and visited links in the post column (.post). 5. Save the Template By pressing the Save Template button, now you finally save the current change of your blog template. Now, as you can see in the post or article column, the link element in the post area will not appear as underlined text anymore.

Michael Hampskin at Yahoo! Answers Visit the source

Was this solution helpful to you?

Other answers

As many of you know, the link element in every column is set by default as an underlined text. So, every time your mouse pointer is moved to the text link, the text will appear differently as underlined text. But, for some of you who don't really like that to happen to your blog, you can now have a full authority to remove underline hyperlink from the hyperlink element by adding a new property inside the CSS styling that controls the link element. Okay, if you are interested with that idea, here's how to do that. 1. Sign in to Blogger account Firstly, now go to Blogger and sign in to your account. 2. Go to Edit HTML In the Dashboard, now press the Layout/Design button of your chosen blog, and then, switch the sub-tab to the Edit HTML. 3. Find the Code Now find the code below (Ctrl + F): ]]></b:skin> 4. Copy and Paste the new CSS styling to remove underline hyperlink I assume that right now, you want the link element in the post area to appear without underline when being mouseovered (hover link). Okay, after locating the code section on number 3 above, now copy the new CSS styling below and then, paste it before the code section ]]></b:skin> in your blog template to remove underline hyperlink. .post a { text-decoration:none; } .post a:hover { text-decoration:none; } .post a:visited { text-decoration:none; } As you can see in that CSS above, i've already created 3 new CSS classes to remove underline hyperlink, that later, will also control the interfaces of the standard, mouseover and visited links in the post column (.post). 5. Save the Template By pressing the Save Template button, now you finally save the current change of your blog template. Now, as you can see in the post or article column, the link element in the post area will not appear as underlined text anymore.

ubaid

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.