Requirements:
- Entry-level experienceor a willingness to learn HTML & CSS.
Custom page headers can be added to the top of any page by using HTML & CSS.
- Once inside the B2B Direct admin portal, using the menu on the left-hand side, click "Website" > "Pages"
- Click the desired page to go into the editor
- Add a Paragraph or similar UI element.
- Click the newly added element, then within the editor click the Source Code icon
- Paste in your HTML / CSS
- Save and Publish your draft.
- Navigate back to the frontend of your B2B Direct site and refresh the page. You may be required to clear your cache to see the changes.
The following frameworks and libraries can be utilized in your code...
BootStrap framework
FontAwesome & Orion icon libraries
Sample Page Header Code
<section class="hero">
<div class="container">
<ol class="breadcrumb justify-content-center">
<li class="breadcrumb-item"><a href="/">Home</a></li>
<li class="breadcrumb-item active">Contact</li>
</ol>
<div class="hero-content pb-5 text-center">
<h1 class="hero-heading">Contact</h1>
<div class="row">
<div class="col-xl-8 offset-xl-2">
<p class="lead text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
</div>
</div>
</div>
</div>
</section>
Comments
0 comments
Please sign in to leave a comment.