πŸ› οΈ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 navigation

  • footer.html – controls the bottom section

Change logo in letter

  • Need change logo use letter.

  • header.html in 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.html in 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.html in use step 2.

  • footer.html in 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.svg

  • You 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 the src.


βœ… 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.


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

Purpose
File/Folder

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