We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Centering an image (.jpg) in header.html works just fine:
.jpg
header.html
<!-- Header --> <header> <div class="container"> <div class="row"> <div class="col-lg-12"> <img class="img-responsive" src="img/<image-name>.jpg" alt=""> </div> </div> </div> </header>
But why is an image (.png) in about.html left aligned?
.png
about.html
<section class="success" id="about"> <div class="container"> <div class="row"> <div class="col-lg-12 text-center"> <img class="img-responsive text-center" src="img/skill_stack.png" alt=""> </div> </div> </div> </section>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Centering an image (
.jpg
) inheader.html
works just fine:But why is an image (
.png
) inabout.html
left aligned?The text was updated successfully, but these errors were encountered: