On the very top left, I would like both the tag line and the mobile phone to be centered on the left, with the quote button on the right.
It is only in the regular mobile view (the mobile landscape view is okay being left justified as it currently is.)
I would have thought this would be much easier, but I am struggling to get the phone part centered. The tag line above it, I did get this, but I had to add padding to the left and right so that the word wrapping looked nicer instead of only having one word end up wrapping.
So – I was able to get the tag line working by adding this to the custom.css:
@media (max-width: 480px) {
.text-tag-top-center {
text-align:center;
padding-left:26px;
padding-right:26px;
}
.text-phone-top-center {
text-align:center;
padding-left:26px;
padding-right:26px;
}
}
I am not using the phone one above as it doesnt work.
Please help and thank you!