Duck4Fuck, а на мой взгляд лучше бы использовать не готический шрифт, а что-нибудь постандартнее. И, кстати, не имеет значение: начинающее свой разворот ООО или нет, но им это лого должно будет служать долго, по крайней мере лого для компаний нужно делать сразу основательно, глядя вперед на будущее. Я думаю они не дураки и тоже понимают это. Советую доработать версию с гербом РФ и названием ООО не перечеркивать логотип. И вообще лучше доработал бы версию с молотком: кратко и лаконично. Talk is cheap.
Сообщение отредактировал SinuS - Воскресенье, 25.10.2009, 00:39
Duck4Fuck, Неплохо так) теней бы поменьше сделал, если статую сам рисовал - уважуха, щит такой, нормальный) а на красный фон щита можно текстуру вдолбить, гербу четкости предать, и тогда будет ошубенно =) Ололо или неололо? Вот в чем пыщьпыщь... www.zox-art.ru — Открыто, но еще дорабатывается.
vladko95, ты заключил в скрипт даже тэги html? И показал бы ошибки для наглядности, тогда сможем помочь. Да и вообще советую не лениться, а исправить ошибки везде где можно вручную, скрипты - самый крайний случай. Ошибки-то написаны, и исправить их не составит большого труда: где нужно - используй хаки, которые Aleko специально выложил в своем блоге. Talk is cheap.
нет, скрипт поставил сразу после <head> и до </html>.
Вот ошибки которые остались.
Line 234, Column 7: "head" not finished but containing element ended </html><div id="utbr8214" rel="s9"></div>
---> Line 234, Column 7: end tag for "head" omitted, but OMITTAG NO was specified </html><div id="utbr8214" rel="s9"></div>
--->
You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">". Line 5: start tag was here ><head> Line 234, Column 7: end tag for "html" which is not finished </html><div id="utbr8214" rel="s9"></div>
--->
Most likely, you nested tags and closed them in the wrong order. For example <p><em>...</p> is not acceptable, as <em> must be closed before <p>. Acceptable nesting is: <p><em>...</em></p>
Another possibility is that you used an element which requires a child element that you did not include. Hence the parent element is "not finished", not complete. For instance, in HTML the <head> element must contain a <title> child element, lists (ul, ol, dl) require list items (li, or dt, dd), and so on. Line 234, Column 31: Attribute "rel" exists, but can not be used for this element. </html><div id="utbr8214" rel="s9"></div>
--->
You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).
This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.
How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash. Line 234, Column 35: document type does not allow element "div" here </html><div id="utbr8214" rel="s9"></div>
---->
The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).
One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error). Line 234, Column 7: XML Parsing Error: Opening and ending tag mismatch: head line 5 and html </html><div id="utbr8214" rel="s9"></div>
---> Line 235, Column 21: XML Parsing Error: Premature end of data in tag html line 3 <!-- 0.01081 (s9) -->