Recently I moved my personal website to github.io and used jekyll's indigo theme. In one of my markdown page called about.md, I have the following tag.
<img src="../figs/foo.jpg" width="100%">
But this is overridden by another block.
.about img {
width: 50%;
margin: 0 auto;
display: block;
}
Because of which, the image I want to show for 100% is only displayed half of the page.
How will I override the .about img to show my image for 100%