Click to See Complete Forum and Search --> : overwrite <head> tag?
dvlkn
04-07-2006, 01:07 PM
is it possible to overwrite the <head> tag from the <body> tag?
heh I'll explain...
the prob iz that I hav a blog on a website and can only edit the <body>... the <head> is already set up and I dont hav access to it. but since it's kind of dull, I wanna change it. Is it possible?
What is in the <head>, which shouldn't be, that needs changing? :confused:
dvlkn
04-07-2006, 03:21 PM
What is in the <head>, which shouldn't be, that needs changing? :confused:
um well stuff like the style sheet or add codes for thumbnails, mouse overs, etc... that require part of the html code to be written in the <head> tag...
help any1?
stephen1davis
04-07-2006, 04:04 PM
codes for mouseover can be placed in the <body> tag
darkfilz303
04-07-2006, 04:38 PM
You can also use src to input code into the body section that would usally be in the head... for expample if you wanted to put code from javascript into the body you would use this:
<BODY>
<SRIPT Language="JavaScript" src="FileNameOfCoding.js">
</SCRIPT>
</BODY>
;)
dvlkn
04-08-2006, 06:44 AM
codes for mouseover can be placed in the <body> tag
really? :confused: could u then give me the codes plz? cos I looked everywhere n part of it must be written in the head... :(
dvlkn
04-08-2006, 06:46 AM
You can also use src to input code into the body section that would usally be in the head... for expample if you wanted to put code from javascript into the body you would use this:
<BODY>
<SRIPT Language="JavaScript" src="FileNameOfCoding.js">
</SCRIPT>
</BODY>
;)
uuh it's rather the inverse, I wanna post in the <body> what should in fact be in the <head>... I even tried to add <head> </head> in the <body> tag but it doesn't work :(
Using JavaScript in the body can overwrite/change the css or JavaScript in the head.