News:

SMF 2.1.4 has been released! Take it for a spin! Read more.

Main Menu

theme get messed up

Started by the-wanted, January 22, 2011, 10:59:26 AM

Previous topic - Next topic

the-wanted

hi

when i install the shoutbox(smfparks shoutbox) on my forum then the theme get messed up , i am using smf 2 rc3 and have installed a theme valled "OUTLINE" and you  can check out the orginal theme at this website : http://demo.dzinerstudio.com/
and also i have added a pic to see how the theme get messed up...

Spoogs

You're best to check with the theme or mod author

the-wanted

Quote from: Spoogs on January 22, 2011, 11:04:11 AM
You're best to check with the theme or mod author
¨

mod author not giving support anymore..

Illori

smf does not directly provide support for mods made by others. you can still post in the support thread and hope for support from a user of the mod. or you can contact the theme author and hope they would provide support for the issue.

kat

Have you done the obvious and checked the theme's paths?

the-wanted

Quote from: K@ on January 22, 2011, 04:08:22 PM
Have you done the obvious and checked the theme's paths?

I did now and everything look good i believe its something wrong in the css

kat

Their themes can be a real pain in the arse.

Sorry, not a clue. :(

the-wanted

Quote from: K@ on January 22, 2011, 05:31:43 PM
Their themes can be a real pain in the arse.

Sorry, not a clue. :(

ya true , anyway thnx for trying :)

Antechinus

Quote from: K@ on January 22, 2011, 05:31:43 PM
Their themes can be a real pain in the arse.

Sorry, not a clue. :(
Outline is actually quite easy to work with. It was the one that got me started way back when I first started theming.

Give us a link to the problem.

the-wanted

Quote from: Antechinus on January 22, 2011, 06:11:08 PM
Quote from: K@ on January 22, 2011, 05:31:43 PM
Their themes can be a real pain in the arse.

Sorry, not a clue. :(
Outline is actually quite easy to work with. It was the one that got me started way back when I first started theming.

Give us a link to the problem.

here is the link  http://myphpsite.20x.cc

Antechinus

Your top bar has some messed up css:

.some{margin-left:1%}
.some img.youtubetwitter{float:left;margin-top:5%;vertical-align: middle}
.some img.facebook{float:left;margin-top:8%;vertical-align: middle}
}


Should be:

.some{margin-left:1%;}
.some img.youtubetwitter{float:left;margin-top:5%;vertical-align: middle;}
.some img.facebook{float:left;margin-top:8%;vertical-align: middle;}


You also have some html errors: http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fmyphpsite.20x.cc%2F

The important ones are these:

Error Line 83, Column 222: end tag for "img" omitted, but OMITTAG NO was specified

..."-" src="http://myphpsite.20x.cc/Themes/outline_20rc3/images/collapse.gif"></a>



Error Line 96, Column 34: end tag for "tr" which is not finished

                  <tr id="shoutbox_msgs"></tr>

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 require appropriate list items (<ul> and <ol> require <li>; <dl> requires <dt> and <dd>), and so on.



Error Line 104, Column 112: end tag for "param" omitted, but OMITTAG NO was specified

...tp://myphpsite.20x.cc/Themes/default/shoutbox.swf?dir=http://myphpsite.20x.cc">


You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".
Info Line 104, Column 4: start tag was here

         <param name="movie" value="http://myphpsite.20x.cc/Themes/default/shoutbox.s...



Error Line 105, Column 39: end tag for "param" omitted, but OMITTAG NO was specified

         <param name="quality" value="high">

You may have neglected to close an element, or perhaps you meant to "self-close" an element, that is, ending it with "/>" instead of ">".
Info Line 105, Column 4: start tag was here

         <param name="quality" value="high">



Error Line 248, Column 6: end tag for element "div" which is not open

</div>

The Validator found an end tag for the above element, but that element is not currently open. This is often caused by a leftover end tag from an element that was removed during editing, or by an implicitly closed element (if you have an error related to an element being used where it is not allowed, this is almost certainly the case). In the latter case this error will disappear as soon as you fix the original problem.

If this error occurred in a script section of your document, you should probably read this FAQ entry.

the-wanted

wow that a big problem  and to many errors lol , i will test it later and hope i can fix it as i am not pro

Advertisement: