Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

168
Views
Logo in the Navbar

I am starting with a project and when I place my logo("Image") in the nav it does not take the background color of it(The image is in png format), please I need help.

HTML

 <header> <nav class="navbar navbar-light bg-light"> <div class="container"> <a class="navbar-brand" href="#"> <img src="./img/Logo.png" height="100"/> </a> </div> </nav> </header>

CSS

 *{ box-sizing: border-box; margin: 0; padding: 0; background: #ffffff; } header{ display: flex; justify-content: space-between; align-items: center; padding: 10px 10%; background: linear-gradient(90deg, #72C6EF 0%, #004E8F 100%);}

this is how i look


enter image description here
over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

you have set a property:

 background: linear-gradient(90deg, #72C6EF 0%, #004E8F 100%); //Esta propiedad lo que hace es hacer ese degrade azul que vez.

Instead, you should replace the background color of your header with the color of your logo in this case white.

HTML

 <header> <nav class="navbar navbar-light bg-light"> <div class="container"> <a class="navbar-brand" href="#"> <img src="./img/Logo.png" height="100"/> </a> </div> </nav> </header>

CSS

 *{ box-sizing: border-box; margin: 0; padding: 0; background: #ffffff; } header{ display: flex; justify-content: space-between; align-items: center; padding: 10px 10%; background: #ffffff; }

With this the background of your header would have to be white (of the color of your logo). Although it is not the most optimal, I recommend you make your logo .png so that you do not have to place the background of the header in the same color as the background of your logo.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!