Topic: Changelog

I'm trying to make a change log and so far this code does not work.

        <div id="iGroup">
            <div class="iLayer" id="waHome" title="Home">
                <div class="iBlock">
                    <h1>Changelog 2.0</h1>
                    <li><p>New micro-framework.
                    <li>New building structure.
                    <li>navigation buttons are now fully clickable.
                    <li>Faster to load.
                    <li>Smaller and optimized code.
                    <li>bug fixes.
                    <li>enhanced auto-bug repair/avoiding.
                    <li>added button in top left.
                    <li>added button in top right.
                    <li>Fewer problems with the sliding.
                    <li>more Images included.
                    <li>less http request by reducing number of images and scripts.
                    <li>Embedding RSS functionnality.
                    <li>and more...</p></li>
                </div>
            </div>

Any ideas on how I can get this to work?

Re: Changelog

Hi Jason,

<ul> is missing and your <li> are not closed.

Apart from that, what is not working exactly?

/!\ Don't forget to "Like" WebApp.Net from the homepage.

Re: Changelog

It shows up like this:
http://img38.imageshack.us/img38/2596/changelog.png

I did what you told me to do now it shows up like this:
http://img403.imageshack.us/img403/6167/changelog2.png

Last edited by Jason~ (2010-02-06 13:28:53)

Re: Changelog

First, remove the useless <p> and make your code valid

<li><p>....
<li>...
<li....</p></li>

is far from valid HTML. Once you've fixed your makrup, put your <ul> into a <div> element.
This element is needed to group content in a iBlock container.

/!\ Don't forget to "Like" WebApp.Net from the homepage.

Re: Changelog

I'm not really a expert when it comes to this kind of stuff, could you please explain or paste the edited code? I learn much better from viewing.

Re: Changelog

Here is the code...

<div class="iBlock">
    <h1>Changelog 2.0</h1>
    <div>
        <ul><li>New micro-framework.</li>
            <li>New building structure.</li>
            <li>navigation buttons are now fully clickable.</li>
            <li>Faster to load.</li>
            <li>Smaller and optimized code.</li>
            <li>bug fixes.</li>
            <li>enhanced auto-bug repair/avoiding.</li>
            <li>added button in top left.</li>
            <li>added button in top right.</li>
            <li>Fewer problems with the sliding.</li>
            <li>more Images included.</li>
            <li>less http request by reducing number of images and scripts.</li>
            <li>Embedding RSS functionnality.</li>
            <li>and more...</li>
        </ul>
    </div>
</div>
/!\ Don't forget to "Like" WebApp.Net from the homepage.

Re: Changelog

Ahh, I see now. Cheers.

Re: Changelog

Jason, I don't want to seem rude, but unless you read a basic tutorial on HTML or XHTML, you'll keep coming up against problems. There are hundreds of tutorials on the web and I strongly suggest that you save yourself time in the long-run by reading one or two now.