Hello!
I found and edited a small piece of code that seems to only work in Google Chrome. My problem is that I'm using a free website builder, and it allows for a "custom HTML" field, so I can't have multiple style sheets. Everything needs to be internal. Again, this works exactly how I need it to in Chrome.
Is anyone willing to help me edit the code or revamp it completely? I will admit that I'm a self-taught noob and anything beyond html/css is foreign to me.
Code:
<html>
<head>
<style id="jsbin-css">
summary {outline: none; -webkit-tap-highlight-color: rgba(255, 255, 255, 0); font: bold 1em Arial, Helvetica, sans-serif; padding: 8px 0; position: relative; width: relative; }
summary::-webkit-details-marker {display: none}
summary:after{background: #888888; border-color: blue; border-radius: 5px; content: "+"; color: #ffffff; float: left; font-size: 1.5em; font-weight: bold; margin: -5px 10px 0 0; padding: 0; text-align: center; width: 25px;}
details[open] summary:after {background: #000000; content: "-";}
</style>
</head>
<body>
<details>
<summary>
Title Here
</summary>
<p>
Information Here
</p>
</details>
</body>
</html>