Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

Whitespace

That's the 2 divs..

HTML:
<div
  style="
    background-color: black;
    height: 5%;
    width: 100%;
    position: fixed;
    text-align: center;
    text-decoration: none;
    top: 0%;
    z-index: 2;
  "
>
  <a href="Synthwave FM" target="_blank"
    ><img
      src="https://www.synthwave.fm/facebook.svg"
      height="100%"
      class="rotateimage"
      onmouseover="this.src='https://www.synthwave.fm/facebook2.svg'"
      onmouseout="this.src='https://www.synthwave.fm/facebook.svg'" /></a
  ><span
    style="
      color: #d4af37;
      font-size: 30px;
      font-weight: bold;
      line-height: 100%;
      vertical-align: top;
    "
    ><a
      href="http://www.synthwave.fm/royalty"
      target="_blank"
      style="color: #d4af37"
      >&#128142;</a
    ></span
  ><a href="Synthwave FM" target="_blank"
    ><img
      src="https://www.synthwave.fm/youtube.svg"
      height="100%"
      class="rotateimage"
      onmouseover="this.src='https://www.synthwave.fm/youtube2.svg'"
      onmouseout="this.src='https://www.synthwave.fm/youtube.svg'"
  /></a>
</div>

<div
  style="
    margin: 0;
    left: 0;
    right: 0;
    margin: auto;
    padding: 3%;
    padding-top: 0%;
    position: absolute;
    text-align: center;
    height: 1000px;
    width: 70vw;
    top: 5%;
    z-index: 1;
  "
  class="backgroundblack bordercurved"
>
  <p
    style="
      color: white;
      font-family: tahoma;
      font-size: 6vw;
      font-weight: bolder;
      height: 6.25vh;
      top: 0;
    "
  >
    SYNTHWAVE<span style="color: #d4af37">&#9670;</span>WORLD
  </p>

  <p style="color: white; font-family: candara; font-size: 1.5vw">
    Submit your Bandcamp music:
    <span style="color: #d4af37">[email protected]</span>
  </p>

  <p style="color: white; font-family: candara; font-size: 1.5vw">
    In alphabetical order:
  </p>

  <iframe
    src="https://www.bandcamp.com/EmbeddedPlayer/album=2998416960/size=large"
    style="border: 0; height: 500px; width: 300px"
    ><a href="https://www.abakus.bandcamp.com/album/departure-2"
      >Departure by Abakus</a
    ></iframe
  >

  <iframe
    src="https://www.bandcamp.com/EmbeddedPlayer/album=2998416960/size=large"
    style="border: 0; height: 500px; width: 300px"
    ><a href="https://www.abakus.bandcamp.com/album/departure-2"
      >Departure by Abakus</a
    ></iframe
  >

  <iframe
    src="https://www.bandcamp.com/EmbeddedPlayer/album=2998416960/size=large"
    style="border: 0; height: 500px; width: 300px"
    ><a href="https://www.abakus.bandcamp.com/album/departure-2"
      >Departure by Abakus</a
    ></iframe
  >
</div>
 
Last edited by a moderator:
This is the head..

CSS:
<head>
<title>Synthwave World</title>
<link rel="icon"href="https://www.synthwave.fm/synthwavefmicon.webp">
<style>
a{text-decoration:none}
#leftarrow{background-color:#101010;border:1px gray solid;border-radius:100%;color:#D4AF37;display:block;font-size:2vw;font-weight:bolder;top:85%;left:0.75%;line-height:4vw;width:4vw;position:fixed;text-align:center;text-decoration:none;transition:0.5s}
#leftarrow:hover{color:white;transform:rotate(360deg)}
#rightarrow{background-color:#101010;border:1px gray solid;border-radius:100%;color:#D4AF37;display:block;font-size:2vw;font-weight:bolder;top:85%;right:0.75%;line-height:4vw;width:4vw;position:fixed;text-align:center;text-decoration:none;transition:0.5s}
#rightarrow:hover{color:white;transform:rotate(360deg)}
.backgroundblack{background-color:rgba(0,0,0,0.9575)}
.bordercurved{border-top-left-radius:50px 25px;border-top-right-radius:50px 25px;border-bottom-left-radius:50px 25px;border-bottom-right-radius:50px 25px}
.changecolor:hover{color:white}
.rotateimage{transition:0.5s}
.rotateimage:hover{transform:rotate(360deg)}
</style>
</head>
 

New Threads

Latest posts

Buy us a coffee!

Back
Top Bottom