How can I move the text down on the mobile view so it is more centered? The font is hard to read and I think by moving all of the text down, it will solve that problem. Also, is there a way to zoom the jumbotron photo out more on the mobile version?
Hi @frankieg1150,
The best you can do is this css code:
@media only screen and (max-width: 1024px) {
#header .bottom-header p {
margin-top: 42em;
font-weight: bold;
}
}
Thanks,
Cristian