π οΈWebsite Customization Guide
This guide will help you understand how to customize your website's design, content, and layout. It includes how to change colors, headers, footers, images, and homepage content section-by-section.
π¨ 1. Global Website Color
File to edit:
assets/js/js.js
What to change:
Look for javascript variables
let colorAllWeb = "#----"color values like#ff5733,#ffffff, etc.Modify primary colors, background, text, and button colors here.
let colorAllWeb = "#ff5733"; // Change this to your desired color
document.documentElement.style.setProperty('--primary-change-color', colorAllWeb);
document.documentElement.style.setProperty('--primary-change-light-color', colorAllWeb + 21);π§© 2. Logo Customization
Files to edit:
header.htmlβ controls the website's top navigationfooter.htmlβ controls the bottom section
Change logo in letter
Need change logo use letter.
header.htmlin use step 1.<a class="navbar-brand" href="index.html"> <!-- step 1 : use letter format --> Invoice <br><small>Generator</small> <!-- step 2 : use image --> <!-- <img src="logo image part" alt="image" /> --> </a>footer.htmlin use step 1.<!-- step 1 : use letter format --> <h5 class="footer-invoice-invoice" onclick="window.location.href='invoice.html'" >Invoice </h5> <p class="footer-invoice-generator" onclick="window.location.href='invoice.html'" >Generator</p> <!-- step 2 : use image --> <!-- <img src="logo image part" alt="image" /> -->
Change logo in Image
Need change logo use image.
header.htmlin use step 2.footer.htmlin use step 2.
π 3.Header Customization
File: header.html
Sections:
Heading Banner (Top notice)
Navigation Menu
β 1. Top Heading Banner
To Customize:
Update banner text as per your brand messaging.
To remove the banner, delete or comment out the entire
<div class="Heading">...</div>block.
Close Button Icon:
Located at:
assets/image/heading/heading-Close.svgYou can replace the image with your own close icon.
β 2. Brand Name or Logo
To Customize:
Option 1: Keep letter-based branding. Modify the text.
Option 2: Replace with a logo by uncommenting the
<img>tag and updating thesrc.
β 3. Navigation Menu Links
Each menu item is defined as a <li class="nav-item">.
To Customize:
Change link text or destination URL.
Add or remove menu items as needed.
To reorder, just rearrange the
<li>elements.
β 4. Dropdown Menus
There are three dropdowns: Documents, History, Business Tools.
Each is controlled using this pattern:
To Customize:
Add/remove items in the
<ul class="dropdown-menu">.Update labels and destination files accordingly.
β 5. Night Mode Toggle
This enables light/dark mode. You can style it via CSS or remove it if not needed.
β 6. Google Translate Widget
To disable language translation, simply delete this line.
πΌ 4. Section 8 (Homepage Highlight)
File: index.html
Section: Section 8
β 1. Section Background
To Customize:
Replace the image file or URL to set a new background.
You can also change background color directly with CSS.
β 2. Section Content
To Customize:
Edit heading text
<h2>, paragraph<p>, and button text/link as per your product description.Button link should go to your main invoice generator or CTA page.
π» 5. Footer Customization
File: footer.html
Sections:
Branding section
Product, Support, Resources, Company columns
β 1. Branding Area
To Customize:
Replace the text or use an image logo by enabling this:
Branding Tagline:
Update as per your tagline or business pitch.
β 2. Footer Link Sections
Each column includes a title and list:
To Customize:
Replace the titles: "Product", "Support", etc.
Add/remove links under each list as needed.
These are static text, but can be turned into
<a href="#">...</a>if needed.
π Back to Top Button
To Customize:
Icon uses FontAwesome.
Style the button via CSS or remove it by deleting this block.
π Files & Folders You Might Edit
Header layout & links
header.html
Footer content
footer.html
Section 8 / Home sections
index.html
Images used
assets/image/...
Styles
assets/css/style.css
JavaScript
assets/js/...
π Developer Tips
Use a code editor like VS Code for easier file navigation and editing.
Keep backups of original files before making big changes.
Clear browser cache to see updates when editing CSS or images.
Mobile responsive? Test your changes on small screen sizes.
Last updated