Warrior Cat Clans 2 (WCC2 aka Classic) is a roleplay site inspired by the Warrior series by Erin Hunter. Whether you are a fan of the books or new to the Warrior cats world, WCC2 offers a diverse environment with over a decade’s worth of lore for you - and your characters - to explore. Join us today and become a part of our ongoing story!
News & Updates
11.06.2022 The site has been transformed into an archive. Thank you for all the memories here!
Here on Classic we understand that sometimes life can get difficult and we struggle. We may need to receive advice, vent, know that we are not alone in our difficult times, or even just have someone listen to what's going on in our lives. In light of these times, we have created the support threads below that are open to all of our members at any time.
So I'm using the basic clan layout for the contest and I needed to add four more territory spaces. So I copied the code, however it will not show up despite being the exact same as the code that is showing up. I would love some help if anyone understands what is going on.
link Here is a google doc of my current code. Territory 7 through 10 are all copy and pasted in, then I just changed the numbers at the end of the names.
I noticed a few things that are messing with the code. Firstly, you want to change the first <head> at the top (you have two, it appears) to <html>, there shouldn't be two <head> at the top. c:
Secondly, I noticed that you didn't change the values of the "top:" part when you copied over the sections territory places 6-10 are all at 2110px from the top. You also did not change the "left:" value. This means that the sections will overlap, causing them to not be seen. For them to be seen lower than the other sections, you have to make the top value 430px higher for each set of two. And for the left, that needs to be changed as well, so some shows closer to the left, some closer to the right. Make sure, when you copy code for a new section, to change the "top:" and "left:" or "right:" values as needed so it shows up correctly. Otherwise, it causes the aforementioned overlap. It's there, you just can't see it. Here's what the code needs to be changed to. territoryname7 top:2540px; left:30px;
territorynamebio7 top:2540px; left:295px;
territoryname8 & territorynamebio8 top:2540px;
territoryname9 top:2970px; left:30px;
territorynamebio9 top:2970px; left:295px;
territoryname10 & territorynamebio10 top:2970px;
You can see that for the left values I made every odd number match the "left:" value of territoryname5 or territorynamebio5 (which are the same "left:" values of 1 & 3, corresponding to whether they're name# or namebio#) , and for the top values, for each set, I added +430 to the number. (2110+430=2540, 2540+430=2970)
Thirdly, it seems you've doubled your code in the doc. On the revamp site, it's not showing that you copied the double, but I'm not sure why it exists. Scroll down to the bottom of page 10. You can see </html> this is the end of your code. If you didn't intend to have this extra, maybe delete everything after page 10, so it doesn't accidentally get copied into your layout.
Fourth, it seems you've forgotten to include </center> in a lot of spaces of your code. This is what is causing the </div> value to show up red, instead of the usual green. (Which isn't relevant to your question, but it's something I noticed) For every <center> you need the end tag as well. cx
When I made SunClan's original page, the layout before this current one, I forgot to do this a lot.... with things other than <center>, and made the entire layout a mess I just forced into being in the right places. Tried to fix it once, then realized I'd broken it beyond repair, and I don't know how I made it functional at all. xD
Deleted
POSTEDNov 8, 2019 2:38:38 GMT -5 TO The Help Board
HTML takes time to learn, and it can be super finicky at times. Especially when you're first learning and it's messing with code someone else made. You're already doing great!
I've been working with code only for a year, and I'm still constantly googling for an hour or more when I try something new and generally mess it up the first few times. Keep working at it! It'll get easier. <3