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
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
Related Q & A:
- How do I remove a site from IIS7 using JavaScript?Best solution by Server Fault
- how can i remove an array from an array?Best solution by Stack Overflow
- How can I remove duplicate Objects from array of Objects in javascript?Best solution by Stack Overflow
- How do i remove attachments and photos after i have read my emails?Best solution by Yahoo! Answers
- How do I remove my name from my email so it does not show up when I send mail?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.