Hello – I am hoping to have my Title scale on the travel blog (mikemcewan.ca) I am creating. Currently, it displays as I would like in the desktop view:
However, in tablet or mobile views the title overlaps the header image:
Anyone have an idea on how I could remedy this? Thank you in advance,
The cod eis not working on your site because of the following custom CSS code that you have added in the style.css file of your child theme. The code doesn’t have closing bracket.
@media only screen and (min-width: 767px){
The code should be as following.
@media only screen and (min-width: 767px){
}
Whenever you find the CSS code i have provided doesn’t work on your site then try adding it at the very top of CSS code.
Thank you @movin! I ended up adding two instances of the same code with different max-width’s. The code you provided worked well in tablet view, but the text was still overlapping the header image in phone view.