Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to change the color of #2d3b51, #2d3b50 and #1a2430 in the style.css file ? #337

Open
gnubsdguy opened this issue Jun 1, 2024 · 4 comments

Comments

@gnubsdguy
Copy link

Hi Hello.

I have been changing some colors in the style.css file but there are are two colors that I could not find (at the top bar (which says start bootstrap) is #2d3b51 and the bottom, (where it says (Copywrite your website 2023)) there is #1a2430. I just used a text editor (scintilla in linux) but it seems not to find both colors. Is there anyway to find them ?.

Thanks so much for this template !

Regards

Manuel.

@nd3w
Copy link

nd3w commented Jun 4, 2024

For text 'Start Bootstrap' at the top, it's part of .navbar-brand that embedded in bootstrap core style. Just add a new selector at the bottom of style.css

.navbar-brand {
    color:#fc3 !important
}

For text at the bottom, add another property for the selector .copyright at the bottom of style.css:

.copyright {
  background-color: #1a252f;
  color:#fc3 !important
}

@gnubsdguy
Copy link
Author

Thanks so much for you answer !!!! I am going to test it if it works !

@gnubsdguy
Copy link
Author

Hi Again, just one more question (the last one). How I change the second section that says "start boostrat" (that's text it says after Graphics Design, Webdesigner and Illustrator) and there is another section it says "About" they are in some kind of green and I want to change it to another color (like the green color) of this first section on the top.

@nd3w
Copy link

nd3w commented Jun 6, 2024

How I change the second section that says "start boostrat" (that's text it says after Graphics Design, Webdesigner and Illustrator)

Remove font-weight-light properties and create a new selector to change its color.

and there is another section it says "About" they are in some kind of green and I want to change it to another color (like the green color) of this first section on the top.

Remove text-white properties and like section above create a new selector to change its color.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants