Blog Title hidden by global content

Hollybishop
Participant

Hollybishop_0-1733323451246.png

Our blog titles are now hidden by the mega nav and i was wondeirng if anyone knew how to pull this donw. I have a feeling it may have something to do with the code in design manager but I'm not sure.

 

0 Votes
1 Solution acceptée
albertsg
Solution
Conseiller clé

Hi @Hollybishop, I don't know how familiar you are with HTML and CSS, but if you have no experience with that, try adding the following code to your Blog post header HTML (Settings > Content > Blog > Templates):

 

@media screen and (min-width: 1200px) {
    .hs-blog-post {
        margin-top: 142px!important;
    }
}

 

Basically your Blog content has a margin added to the top but it's not enough. Seems like the space the "Become a Courier" button is taking needs to be added to the mentioned margin. The code above does that for screens from 1200px (as I've noticed that your page changes the navigation at that screen size). 

 

Hope this helps!

Voir la solution dans l'envoi d'origine

4 Réponses 4
Hollybishop
Participant

Thank you SO MUCH!!!! @albertsg 

0 Votes
TomM2
Leader d'opinion | Partenaire solutions Platinum
Leader d'opinion | Partenaire solutions Platinum

Hey @Hollybishop this would be due to your theme/template and the styling applied there! If you can send me a link to a page you're seeing this on I can see if there's an easy bit of css to add that can help! 

Tom Mahon
Technical Consultant | Solutions Engineer | Community Champion
Baskey Digitial

Book a consultation

Did my post help answer your query? Help the community (and me) by marking it as a solution.


0 Votes
Hollybishop
Participant

Hey @TomM2 thanks for your help! Here is a link to one of our blogs Legal Firm Partnership: A Case Study of Seamless Legal Logistics Any help is greatly appreciated! 🙂

0 Votes
albertsg
Solution
Conseiller clé

Hi @Hollybishop, I don't know how familiar you are with HTML and CSS, but if you have no experience with that, try adding the following code to your Blog post header HTML (Settings > Content > Blog > Templates):

 

@media screen and (min-width: 1200px) {
    .hs-blog-post {
        margin-top: 142px!important;
    }
}

 

Basically your Blog content has a margin added to the top but it's not enough. Seems like the space the "Become a Courier" button is taking needs to be added to the mentioned margin. The code above does that for screens from 1200px (as I've noticed that your page changes the navigation at that screen size). 

 

Hope this helps!