QuestionsCategory: General QuestionsFOCUS – Resize Header Image on Mobile-only
Caleb Willaims
asked 4 weeks ago
Hello!   I've noticed for a while that the image used on my mobile site header is perfect on the homepage but expands once you click an article and go to a single post. I want the single-post header image to be the same as the homepage. Again, this is for mobile only.   Site: https://knightedgemedia.com/  
1 Answers
tech Staff
answered 4 weeks ago
You can use the following CSS code: 
@media (max-width: 480px) {
   .site-navigation .site-brand img { 
       width: 60%;
   }
}

Please login or Register to submit your answer