D5 Creation Forum

Open Forum for D5 Creation's Members and Visitors

Before requesting any support Please search the Forum First. You may find your desired answer. This will save your waiting time and will save our working hour. We may not answer the question which we have already answered. You should also read our Support Policy

Re: Unable to change website color through Customized design

Front Page D5 Creation Forum General Support Unable to change website color through Customized design Re: Unable to change website color through Customized design

#4763
D5 Creation
Keymaster

We found some extra characters which are not created from Theme Functions. We assume that those are created from any Plugins. Unfortunately you restricted the Plugins from the User ID you provided. That’s why we could not check which plugin is responsible to generate those unnecessary tags.

The unnecessary tags are:

Code:
<p>, <br />, </p>

You should remove those tags.

You are using the following code in the Custom Code within Head Area of Theme Option which is not correct.

Code:
<p>.box_skitter { background: transparent; }<br />
#commentsbox { display: none; }</p>

You should use this:

Code:
<style>.box_skitter { background: transparent; }
#commentsbox { display: none; }</style>