English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories

Using Dreamweaver i've set the properties > links to corporate colours for the navigation, however further down the page this conflicts with the background, how do i selectively disregard this CSS property so it doesn't apply to all the links?

2006-10-17 03:17:49 · 5 answers · asked by thedaveidentity 1 in Computers & Internet Programming & Design

5 answers

Choose the text where you don't want to use css and apply some font there rather than the css style.

2006-10-17 03:40:36 · answer #1 · answered by Tarun 3 · 0 0

i imagine you would possibly want to do in with html basicly you ought to creat a table and use attribuates to flow the textual content down and to the left (i comprehend there are ones yet i visit't bear in mind them I in basic terms use css for stuff liek that now, and then creat a a million pixel border on in basic terms teh bottem of the cellular (it is basic in css, dont comprehend abotu html back) as fro how css works part of compacting each and every of the atributes in a unmarried document right into a unmarried report that is shared for the period of countless pages. I advise you get a e book in case you want to study it. It makes html might want to purifier to ascertain and is easyer then favourite html atributes

2016-12-04 22:18:12 · answer #2 · answered by hausladen 4 · 0 0

Hopefully someone else will be along to fully answer, but something to try in the meantime:

I'm familiar with HTML, and not so much CSS. I think you can < /style > and then < style > to create a new set of formatting... Somthing to try at least!

2006-10-17 04:07:20 · answer #3 · answered by myaddictiontofire 5 · 0 0

In your css file you should define the properties that will apply to all pages in your site and when you need to change something
in your HTML tags you just add style ="" it will override the definitions in you general css file

If you have
a{
color:#fea;
background;#fff;
}

in your HTML tag you will need to change Grrrrrrrrrr



http://www.skillipedia.com

2006-10-17 04:11:34 · answer #4 · answered by ? 2 · 0 0

A better way to do it is to define different classes in your css, then apply them to the relevant links.
eg:
in your css:
a { color:purple; } /* Default colour for links */
a .red { color: red; } /* Extra classes for different colours */
a .green { color: green; }

and in your HTML:
No class - link is purple
Red link
Green link

2006-10-17 23:49:20 · answer #5 · answered by Daniel R 6 · 0 0

fedest.com, questions and answers