Just dipping my toes into the world of CSS and HTML, but I'm getting the hang of it. Currently, I have a background image on my header section and I want to transform it into a slideshow featuring 3-4 images that rotate automatically.
I've come across tutorials that use images directly in HTML, but the way I've set it up is by using the CSS property background-image for my image.
If this sounds confusing, here's a snippet of my CSS:
.global-header {
min-height:600px;
background-image: url("Assets/BGImages/head_sandwichman.jpg");
background-size: cover;
text-align: center;
And here's the relevant HTML:
<header class="container global-header">
<div class="inner-w">
<div class='rmm' data-menu-style = "minimal">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="menu.html">MENU</a></li>
<li><a href="findus.html">FIND US</a></li>
<li><a href="about.html">ABOUT</a></li>
</ul>
</div>
<div class="large-logo-wrap">
<img src="Assets/Logos/Giadaslogoindexwhitebig.png" />
</div>
</div>
Appreciate any assistance with this! Thank you!