How to reduce header height and delete top sharing social media space ?

Posted in: Newspaper
Post count: 15

Hi !

I would like to know how to reduce space for these elements :

Height for the header (around the logo space)

And how to to delete or reduce the space between main menu and featured image.

If you need some screenshot, tell me.

Header Style : “Style 10”
Default Post Template : “Style 13”

  • This topic was modified 7 years by ouebflow.
  • This topic was modified 7 years by ouebflow.
Post count: 15

I’m searching param in the CSS file but I don’t find

Post count: 35449

Hi,

You can use this css to reduce the space for logo
.td-header-style-10 .td-logo-wrap-full {
min-height: 90px;
line-height: 90px;
}

Please the css in Newspaper>Theme panel>Custom code>Custom css

Please provide a link were I can inspect the pace between main menu and featured image.

Thank you for your understanding.

Post count: 15

Hi,
Thx for the header space, that work !
for the space between main menu and featured image, you can check this here : http://smartfashionbeauty.com/quel-est-le-meilleur-fer-a-lisser/

Post count: 35449

Hi,

Pleas try this custom css to reduce the space between main menu and featured image

.td-post-template-12 .td-post-header .entry-title, .td-post-template-13 .td-post-header .entry-title {
    padding-top: 0px;
    padding-bottom: 0px;
}
.td-post-template-12 .td-post-header, .td-post-template-13 .td-post-header {
    margin-bottom: 0px;
}

Please replace the above code with this one
.td-header-style-10 .td-logo-wrap-full {
min-height: 90px!important;
line-height: 90px;
}

Thank you.

  • This reply was modified 7 years by Calin.
Post count: 15

The code :

.td-post-template-12 .td-post-header .entry-title, .td-post-template-13 .td-post-header .entry-title {
padding-top: 0px;
padding-bottom: 0px;
}
.td-post-template-12 .td-post-header, .td-post-template-13 .td-post-header {
margin-bottom: 0px;
}

doesn’t work

Post count: 35449

Hi,

Try like this:
.td-post-header .entry-title, .td-post-template-13 .td-post-header .entry-title {
padding-top: 0px;
padding-bottom: 0px;
}
.td-post-header, .td-post-template-13 .td-post-header {
margin-bottom: 0px;
}

Thank you.

Viewing 7 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic.