Help With Page/Forum/Text Editor/Source Code Window
I've been working on a guild article and am attempting to code it for posting on our guild/forum page. I'd like to code 'Show/Hide' buttons as headers to reveal/hide the numerous chapters of content that will be activated by the reader.
I don't use Java and have been exploring HTML & CSS coding for a similar effect, online. The problem is, every time I attempt to cut/paste sample code into the editor, it re-writes and truncates it thereby destroying the effect. I have no idea why and have been tearing my hair out for days with this and Support seems to be unresponsive. (Also, I'm really an HTML beginner;)
Could someone here please help me understand why the text editor is objecting to my designs? And if it's possible, to show me how to code the button's effect I'm after? I'd be really grateful...thank you for your time.
PS. Tried including a page link with a button example but this editor won't allow it!
Hi,
Would you please send a copy of the code and the link you tried posting to Support@gamerlaunch.com? We can take a look to see what's going on.
Thanks,
Kyle
Hi Support,
Thanks for getting back so quick. I had attempted to contact you a week earlier with no response.
I'm a bit behind with this new article and really need to solve this Show/Hide button problem to begin posting my help document.
This is the code I tried but the link to the original page won't post (site says it's SPAM - google this title instead if you want- "Hide Show content-list with only CSS, no javascript used", it's on stack overflow).
<!DOCTYPE html>
<head>
<style>
#cont {display: none; }
.show:focus + .hide {display: inline; }
.show:focus + .hide + #cont {display: block;}
</style>
</head>
<body>
<div>
<a href="#show"class="show">[Show]</a>
<a href="#hide"class="hide">/ [Hide]</a>
<div id="cont">Content</div>
</div>
</body>
</html>
Here is the title of the online page I'm attempting to emulate..."Comprehensive Guide to Gold Making", its on Elder Scrolls Online/forums. (No linking is possible.)
My Guild page is under "For Gain & Glory"
I had achieved large blue rectangles for several topic buttons which looked BAD! But I lost the link and the code so I'm starting from scratch trying to recreate a similar effect but with nice small coloured buttons like the one displaying "Watch Topic" on your site...much nicer.
Let me know if you require further information - Rick D