The Web Design Group

... Making the Web accessible to all.

Welcome Guest ( Log In | Register )

 
Reply to this topicStart new topic
> Should I redesign my forum logo?
Tommy Hara
post Apr 28 2014, 04:05 AM
Post #1


Newbie
*

Group: Members
Posts: 12
Joined: 28-April 14
Member No.: 20,781



Hello,

I designed this logo IPB Image since a year ago and now my forum's having more visits so I'm going to redesign some parts on it
First, I think of redesigning my logo here with corel draw to look better

You can see it http://www.webmastersun.com in complete website design.

According to you, Should I redesign my logo?
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post Apr 28 2014, 08:16 AM
Post #2


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,730
Joined: 9-August 06
Member No.: 6



I don't know, what do you think it wrong with it?

I do think though that you should get rid of the snip of javascript that displays at the top of the pages in some browsers (due to an unescaped slash in a closing tag in a document write). I would also get rid of the other HTML errors. Looks pretty bad on a webmaster site. Among other things you need to decide if you want to use HTML or XHTML and stick to the flavour you choose.

http://htmlhelp.com/cgi-bin/validate.cgi?u...s&input=yes
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
jimlongo
post Apr 28 2014, 12:57 PM
Post #3


This is My Life
*******

Group: Members
Posts: 1,128
Joined: 24-August 06
From: t-dot
Member No.: 16



It looks okay to me.
I didn't know anyone still used Corel Draw.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Tommy Hara
post May 14 2014, 11:10 PM
Post #4


Newbie
*

Group: Members
Posts: 12
Joined: 28-April 14
Member No.: 20,781



QUOTE(pandy @ Apr 28 2014, 08:16 AM) *

I don't know, what do you think it wrong with it?

I do think though that you should get rid of the snip of javascript that displays at the top of the pages in some browsers (due to an unescaped slash in a closing tag in a document write). I would also get rid of the other HTML errors. Looks pretty bad on a webmaster site. Among other things you need to decide if you want to use HTML or XHTML and stick to the flavour you choose.

http://htmlhelp.com/cgi-bin/validate.cgi?u...s&input=yes


Thank for good feedbacks!

can you send me screenshot about thing you said "I do think though that you should get rid of the snip of javascript that displays at the top of the pages in some browsers" ?

Thank you

This post has been edited by Tommy Hara: May 14 2014, 11:11 PM
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post May 15 2014, 09:49 AM
Post #5


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,730
Joined: 9-August 06
Member No.: 6



It's this snip.
CODE
'); var sidebar_align = 'right'; var content_container_margin = parseInt('320px'); var sidebar_width = parseInt('300px'); //-->


It happens because you haven't escaped the slash in the closing SCRIPT tag in the document.write() here.

CODE

    <script type="text/javascript">
    <!--
        document.write('<script type="text/javascript" src="' + yuipath + '/animation/animation-min.js?v=420"></script>');
                                                                                                              ^^^
        var sidebar_align = 'right';
...


It effectively closes the script block. When you have HTML written by JavaScript you must escape the closing slashes with a backslash, like so.

CODE
<\/script>


This time it happened to be </script> and caused more harm than if it had for instance been </p>.

BTW if you are going to write XHTML you can't have those hide from old browsers comments in the script block either.
http://www.w3.org/TR/xhtml1/#h-4.8
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
Christian J
post May 15 2014, 01:29 PM
Post #6


.
********

Group: WDG Moderators
Posts: 9,653
Joined: 10-August 06
Member No.: 7



QUOTE(pandy @ May 15 2014, 04:49 PM) *

BTW if you are going to write XHTML you can't have those hide from old browsers comments in the script block either.
http://www.w3.org/TR/xhtml1/#h-4.8

You can't use document.write either: http://www.w3.org/MarkUp/2004/xhtml-faq#docwrite

Usually the simplest solution is to not use XHTML, since it offers no benefits (it's not even fashionable anymore mellow.gif ). Use e.g. HTML5 instead.
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post
pandy
post May 15 2014, 06:10 PM
Post #7


🌟Computer says no🌟
********

Group: WDG Moderators
Posts: 20,730
Joined: 9-August 06
Member No.: 6



Right, had forgotten about that. I blame the fact that I've never actually used XHTML (more than forced to by software that output it, like this forum). cool.gif
User is offlinePM
Go to the top of the page
Toggle Multi-post QuotingQuote Post

Reply to this topicStart new topic
2 User(s) are reading this topic (2 Guests and 0 Anonymous Users)
0 Members:

 



- Lo-Fi Version Time is now: 19th April 2024 - 05:06 PM