Posted in design elements
9749
2:43 am, November 9, 2020
 

hero box with title sub title logos and call to action buttons

Here is a basic hero box section that contains:

  • Title
  • Sub Title
  • 6 Logos (could replace with carousel logos)
  • 2 call to action buttons

I think it can be made more responsive, by replacing the small classes with medium or large, then they will stack better on smaller screens.

Codepen

See the Pen hero box with title sub title logos and call to action buttons by Luke (@kruxor) on CodePen.

HTML

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.5.0/css/foundation.min.css" id="bootstyle">

<section class="logo-section">
	<div class="grid-container">

		<div class="logo-intro">
			<h3>Lorem ipsum dolor sit amet, consectetur adipiscing elit. </h3>
			<h4> Duis rutrum sapien non ornare sagittis. Fusce quis dignissim felis. Pellentesque iaculis nisl et est ultricies, id mollis lorem volutpat. </h4>
		</div>

		<div class="home-logos-wrap">
			<div class="grid-x grid-margin-x">

					<div class="medium-2 cell">
						<div class="home-logo home-logo-1">
							<img src="//placehold.it/170x50/">
						</div>
					</div>

					<div class="medium-2 cell">
						<div class="home-logo home-logo-2">
							<img src="//placehold.it/170x50/">
						</div>
					</div>

					<div class="medium-2 cell">
						<div class="home-logo home-logo-3">
							<img src="//placehold.it/170x50/">
						</div>
					</div>

					<div class="medium-2 cell">
						<div class="home-logo home-logo-4">
							<img src="//placehold.it/170x50/">
						</div>
					</div>

					<div class="medium-2 cell">
						<div class="home-logo home-logo-5">
							<img src="//placehold.it/170x50/">
						</div>
					</div>

					<div class="medium-2 cell">
						<div class="home-logo home-logo-6">
							<img src="//placehold.it/170x50/">
						</div>
					</div>

			</div>
		</div>

		<div class="home-logos-buttons">
			<a href="#!" class='button'>Call to </a>
			<a href="#!" class='button button-outline'>Action</a>
		</div>

	</div>
</section>

CSS

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

.logo-section {
  padding:80px 0;
  background:linear-gradient( rgba(255,255,255,0.9), rgba(255,255,255,0.2) ),url(https://i.imgur.com/ngukhtd.jpg) center bottom no-repeat;
}

.logo-section * {
  font-family: 'Montserrat', sans-serif;
  text-align:center;
}
.logo-intro h3 {
  margin-bottom:10px;
  font-size:34px;
  color:#111;
}
.logo-intro h4 {
  margin-bottom:30px;
  font-size:18px;
  color:#444;
}
.home-logos-wrap {
  padding:15px 20px;
  background:rgba(255,255,255,0.5);
  border-radius:10px;
  margin-bottom:20px;
}
@media(max-width:1024px) {
  .home-logo {
    margin-bottom:10px;
  }
}
.home-logos-buttons a {
  padding:15px 50px;
  border-radius:3px;
  background:#222;
}

Scripts

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/foundation/6.5.0/css/foundation.min.css" id="bootstyle">

Lorem ipsum dolor sit amet, consectetur adipiscing elit.

Duis rutrum sapien non ornare sagittis. Fusce quis dignissim felis. Pellentesque iaculis nisl et est ultricies, id mollis lorem volutpat.

External Link for hero box with title sub title logos and call to action buttons

View Statistics
This Week
203
This Month
689
This Year
1326

No Items Found.

Add Comment
Type in a Nick Name here
 
Related Search Terms
Search Code
Search Code by entering your search text above.
Welcome

This is my test area for webdev. I keep a collection of code here, mostly for my reference. Also if i find a good link, i usually add it here and then forget about it. more...

Subscribe to weekly updates about things i have added to the site or thought interesting during the last week.

You could also follow me on twitter or not... does anyone even use twitter anymore?

If you found something useful or like my work, you can buy me a coffee here. Mmm Coffee. ☕

❤️👩‍💻🎮

🪦 2000 - 16 Oct 2022 - Boots
Random Quote
When I realized that, no individual step is hard in any process. Building this airport I'm standing in right now started with a guy writing the architectural plans on paper. That's not hard for him to do. Then laying the first beam isn't had. The whole thing is really hard. So, just take each step kind of piece by piece and when I was able to do that and stop trying to chase this prize and started putting in the work, things just started coming together.
Unknown
Random CSS Property

border-start-end-radius

The border-start-end-radius CSS property defines a logical border radius on an element, which maps to a physical border radius depending on the element's writing-mode, direction, and text-orientation. This is useful when building styles to work regardless of the text orientation and writing mode.
border-start-end-radius css reference