Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

Replace YOUR-RESORT with your resorts name, lowercase, dash separated.


For exampleexample…
In your CSS:

Code Block
#YOUR-RESORT-brandfooter p { font-size: 1rem };
#YOUR-RESORT-brandfooter h1 { color: #000 };

And in your HTML:

Code Block
<div id="YOUR-RESORT-brandfooter">
   <h1>YOUR RESORT NAME</h1> 
   <p>Welcome to MY RESORT<p>
   <ul>
      <li><a href="home">Home</li>
      ...
   </ul>
</div>

If you are using SASS to write the CSS and precompiling, you can simply wrap all your CSS in the unique ID:

...