I've been converting over from FrontPage to Dreamweaver 8 and love the new tool.
I'm going to start identifying some of the great tips I'm learning in Dreamweaver 8. This one can be applied to the style sheet of a blogger blog as well.
Many people do not like ot have hyperlinks in their body text displayed with the underline. If you want to remove all underlines from your CSS - style sheet, here's how you can do it fast and easy.
Dreamweaver:
- go into your CSS Window and then the CSS Styles Tab, select All
- n the 'All Rules' window, right click anywhere and select 'New' for new style
- Select the Radial button for Advanced (IDs, pseudo-class selectors)
- in the selector drop down box, select 'a:link'
- also select this document only if its just for this page.
- click OK
- A pop up window will appear, make sure the Category of 'Type' is selected~this is the default
- Towards the bottom middle/left in the Decoration section, choose the box for 'none' and then click apply and OK
a:link {
text-decoration: none;
}
If you want to remove links from a blogger template, just do the following steps,
Blogger Template Changes:
- Open your template for editing in blogger (Make a backup of your template and save it in notepad)
- find the a:link section in the template if it already exists
- If it exists change or add the section: text-decoration: none;
- If it does not exist add it as follows:
- a:link {
text-decoration: none;
} - Preview the template to insure that the underlines are gone
- If everything is OK, then save template
- Republish entire blog
No comments:
Post a Comment