Comments on [f2u] bookworm All Comments Start of Thread Parent

Adding new tabs to a code is complicated, there are a lot of things you need to add/change:

1. add new button that will display the tab's content when you click it 2. add the tab content itself that is linked with the new button 3. make sure that the ID of the button matches the ID of the tab content and doesn't match with any of the others used in the code 4. make sure you haven't accidentally introduced or deleted any div tags while copying/pasting 5. make sure no tags on the tab content are conflicting (ex. only 1 active)

It's kind of complicated so I would not recommend doing this unless you have some previous experience with HTML

I did add the button, I did add content for the new page, I did used the right ID but it’s still not working. I really don’t know why for some reason. I do have some little experiences but, I don’t know why it doesn’t work.

With what you've described in another comment, it sounds like you have a problem with the divs. Either there's a div showing up where it shouldn't be, or a div is improperly closed (the /div is missing where it needs to be). It's very easy to miss these when dealing with long or complicated codes.

Oh ! Maybe it was the case. i'll have to check this out then whenever i can. Thanks for your help !