• Support
  • Forum customization, hero etc

Braden @[deleted] mentioned it above:

h2.Hero-title, .Hero-subtitle {
    font-family: Arial;
font-weight: 800;
color:red;
}

Add lines and your stiles. If so, split Hero-title, .Hero-subtitle, to have effect on each.

    Braden not work 🙁

    it works like this:

    .Hero {
    background: url(url/head.webp);
    background-repeat: no-repeat !important;
    background-size:contain !important;
    background-position:center;
    color:#ffffff;
    
    }

    but if i resize the windows....is broken....so i don't know

      as u can see on metabullet for example, if u resize the window of your browser, the background is totally responsive..

      on my background this does not happen

      Anonymous43 image is 3048x2016, on my monitor fullhd i can see only half image, if i resize the the browser windows, i can see 1/4 of the background

      now i've fixed first problem, background is centered with this:

      .Hero {

      background: url(https://i.ibb.co/d6B1GjX/head.webp);
      height: 100%;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: relative;
      color:#ffffff;
      }

      this is the real image on my resolution, i can see only the middle part of that

      but after that fix the text on the hero now is totally not centered