Thu, 2016-08-11 12:58
hi i I have a question can page in web site be styled in diffeent way from other web pages saparetely
I mean can 1 page be stylied in other way like size of navigation and different color and different logo image?
Thu, 2016-08-11 23:48
#1
Sure
It's not usually a good idea to stray too far away from the normal page as you may confuse your visitor regarding which site he's on.
For a simple example:
body { background-color: white; color: black; font: 100%/125% sans-serif;} p { font-size: 1em;} body#oddball { background-color: black; color: white;} #oddball p { font-weight: bold;}
In the example, you need only note those items that are changed on the page which has body id of oddball.
cheers,
gary