Text box overlaps featured image
-
Hello, how can I keep the text box on the “contact us” page from overlapping the featured image? I have the following code in my CSS already and just making sure I am doing this ok:
.post-thumbnail+.entry-header {
position: static;
transform: translateY(-25%) translateY(.4em);
}Thanks for any help!
The blog I need help with is: (visible only to logged in users)
-
Hi there,
I visited your Contact Us page and didn’t find any textbox overlapping your featured image. Though I see the Title of the page overlaps the featured image. If you want to locate the content of the page along with the title below the featured image then paste the following code snippet in CSS Customizer.
@media screen and (min-width: 1000px) .content-wrapper.with-featured-image { margin: auto; }Let me know if this works for you!
-
@apextutoringservice, that is part of the design of Dara. There is a Media Query that offsets the content up on screens/windows 1000px and wider. We can use the following to reverse that though.
@media screen and (min-width: 1000px) { .content-wrapper.with-featured-image { margin-top: 0; } } -
-
Sorry @krutidugade, I had opened this thread and then gotten distracted and didn’t see your reply. I should have refreshed before replying.
-
-
Thank you both for your help. I think it’s all set now after @thesacredpath’s code snippet.
-
- The topic ‘Text box overlaps featured image’ is closed to new replies.