• Home
  • Showcase
    • Newspaper Showcase
    • Newsmag Showcase
  • Support
    • Newspaper Forum
    • Newsmag Forum
    • Blog
    • Documentation
      • Newspaper Documentation
      • Newsmag Documentation
      • The Theme API
    • What’s New
      • Newspaper
        • What’s New in v 11.5
        • What’s New in v 11.4.3
        • What’s New in v 11.4
        • What’s New in v 11.2
        • What’s New in v 11
        • What’s New in v 10.4
        • What’s New in v 10.3.7
        • What’s New in v 10.3.2
        • What’s New in v 10.3
        • What’s New in v 10
      • Changelog
        • Newspaper
        • Newsmag
        • tagDiv Opt-In Builder
  • Services
    • Web Development Services
    • Web Solutions & CMS Development
    • Web design & Front-end Development
    • E-Commerce Development Services
    • Page Speed Optimization Services
  • Buy Newspaper
Search
tagDiv support
  • Become a member
  • Sign in
  • Home
  • Showcase
    • Newspaper Showcase
    • Newsmag Showcase
  • Support
    • Newspaper Forum
    • Newsmag Forum
    • Blog
    • Documentation
      • Newspaper Documentation
      • Newsmag Documentation
      • The Theme API
    • What’s New
      • Newspaper
        • What’s New in v 11.5
        • What’s New in v 11.4.3
        • What’s New in v 11.4
        • What’s New in v 11.2
        • What’s New in v 11
        • What’s New in v 10.4
        • What’s New in v 10.3.7
        • What’s New in v 10.3.2
        • What’s New in v 10.3
        • What’s New in v 10
      • Changelog
        • Newspaper
        • Newsmag
        • tagDiv Opt-In Builder
  • Services
    • Web Development Services
    • Web Solutions & CMS Development
    • Web design & Front-end Development
    • E-Commerce Development Services
    • Page Speed Optimization Services
  • Buy Newspaper

This forum is now closed to new posts

All existing content remains available to browse and search. For support, please email us at contact@tagdiv.com Our team is happy to help as soon as possible.

Home Newspaper Make Logo Bigger in Header Style 7

Make Logo Bigger in Header Style 7

Posted in: Newspaper
Post count: 61
Irreverent Gent
#58229
Jul 7, 2015 at 6:27 am

Hi Guys,

I’m using header style 7 and my logo is displaying at 320 x 105 px. I’d like to be able to customize the size and make it bigger as needed. Is there a Custom CSS code that will let me control its dimensions?

Thanks!

Post count: 6600
Lucian
#58304
Jul 7, 2015 at 3:49 pm

Hi,

You can try to use custom css for it and set the logo’s image max height using this css in theme panel > custom css section:

.td-header-style-7 .td-header-sp-logo img {
max-height: 100px;
}

Let us know how it goes and provide your site’s URL so we can inspect it if you need a more accurate answer on this.

Thanks

Post count: 61
Irreverent Gent
#58390
Jul 7, 2015 at 8:30 pm

Thanks Lucian. My site is under development right now so I don’t want to make it live quite yet. This code has made the image larger, but now it runs over top of the rest of the header. Is there a code I can use to change the max height of the entire header?

Thanks again for your help – much appreciated!

Post count: 7909
Alin [tagDiv]
#58486
Jul 8, 2015 at 1:09 pm

Hi,

I’m not sure if this is what you mean but the header menu has an inline height – http://screencast.com/t/8IM4vXY99x You can try to use browser’s inspector to target header elements and find a solution where to add a max-height value.

Thanks!

Post count: 61
Irreverent Gent
#59064
Jul 11, 2015 at 6:11 pm

Hi Again,

Here’s a link to my site so you can see what I mean: http://www.irreverentgent.com/

Here’s the custom CSS I’m using right now to make it look this way:
.td-header-menu-wrap {
border: 2px solid #cccccc; }
.td-header-style-7 .td-header-sp-logo img {
max-height: 150px;
padding: 0px 0;
}

I’m hoping to make the whole header move down to align with the bottom of the logo, rather than have the logo pop out of the header as it does now. Any advice would be greatly appreciated.

Thanks again!

Post count: 7909
Alin [tagDiv]
#59162
Jul 13, 2015 at 12:42 pm

Hi,

First your css is not applied – http://screencast.com/t/tDRqI2IIh749 also I guess that you have some custom modifications there as the sticky menu is always enabled even at the top of the page – http://screencast.com/t/RVH6lmfQ
Header style 7 should look like this by default – http://screencast.com/t/LaG3m5D0Tax so please remove your custom modifications or if you don’t have please disable all your plugins, leave just Visual Composer active, clear cache and see if it works. I could not recreate this and it should not work like that, the sticky menu should be enabled only when you scroll.

Thanks!

Post count: 61
Irreverent Gent
#59644
Jul 15, 2015 at 8:12 pm

Hi Again,

I’ve removed all custom coding and disabled all plugins. I’d like the entire header container to have a height of 200 px, but can’t seem to figure out the right css code for this. Any suggestions?

Post count: 7909
Alin [tagDiv]
#59718
Jul 16, 2015 at 12:42 pm

Hi,

Please try this custom css in Theme Panel > Custom Css – http://screencast.com/t/QVxvOgtC you will have to use media queries for each screen device and also you will need additional customizations for logo, menu items, unfortunately we cannot provide any type of custom work at this time as we work hard on development, fixes and support, sorry!

@media (min-width: 1020px){
.td-header-style-7 .td-header-menu-wrap-full {
height: 171px !important;
}
}
@media (min-width:768px) and (max-width: 1019px){
.td-header-style-7 .td-header-menu-wrap-full {
height: 100px !important;
}
}

Thanks!

Post count: 61
Irreverent Gent
#59991
Jul 18, 2015 at 1:18 am

That code worked perfectly, thank you so much!

Post count: 61
Irreverent Gent
#60290
Jul 21, 2015 at 7:11 am

Hi Guys,

I just noticed one more small thing. The header looks perfect when you first visit my site, then when you scroll down the menu goes sticky, which is great. But when you scroll back up, the menu has reverted to its default size, and the logo is too large – it hangs over the bottom of the menu.

http://www.irreverentgent.com/

Please let me know if there’s anything I can do to prevent this from happening.

Thank you again for the great support! Really enjoying this theme so far.

Post count: 7909
Alin [tagDiv]
#60359
Jul 21, 2015 at 1:51 pm

Hi,

Please try the following css and check if the issue is still there:

@media (min-width: 1020px){
.td-header-menu-wrap {
height: 170px;
}
.td-header-menu-wrap.td-affix {
height: 48px;
}
}
@media (min-width:768px) and (max-width: 1019px){
.td-header-menu-wrap {
height: 100px;
}
div.td-header-style-7 .td-header-sp-logo img {
max-height: 100px;
max-width: initial;
}
.td-header-menu-wrap.td-affix {
height: 48px;
}
}

Thanks!

Post count: 61
Irreverent Gent
#60376
Jul 21, 2015 at 3:02 pm

That worked! Now it really is perfect. Thanks so much!!

Viewing 12 posts - 1 through 12 (of 12 total)
The forum ‘Newspaper’ is closed to new topics and replies.
Irreverent Gent
Support Hours (GMT+2)

Monday - Friday:
8:00 AM - 17:00 PM

Documentation
  • Newspaper
  • Newsmag
Facebook Instagram Twitter Youtube
Welcome to the Community! This is our main Support Center and, also the place where you can make new friends, people just as passionate about websites as you are. Don’t hesitate to ask for help as we are here for you. Thank you for buying our products!
Contact us: contact@tagdiv.com
  • Home
  • Blog
  • Forums
  • About us
  • Support policy
  • Privacy Policy
© tagdiv.com | Proudly made with by tagDiv. All rights reserved
We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent.
Cookie SettingsAccept All
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-advertisement1 yearThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Advertisement".
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
CookieDurationDescription
_ga2 yearsThis cookie is installed by Google Analytics. The cookie is used to calculate visitor, session, campaign data and keep track of site usage for the site's analytics report. The cookies store information anonymously and assign a randomly generated number to identify unique visitors.
_gat_gtag_UA_43963494_11 minuteThis cookie is set by Google and is used to distinguish users.
_gid1 dayThis cookie is installed by Google Analytics. The cookie is used to store information of how visitors use a website and helps in creating an analytics report of how the website is doing. The data collected including the number visitors, the source where they have come from, and the pages visted in an anonymous form.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
CookieDurationDescription
IDE1 year 24 daysUsed by Google DoubleClick and stores information about how the user uses the website and any other advertisement before visiting the website. This is used to present users with ads that are relevant to them according to the user profile.
test_cookie15 minutesThis cookie is set by doubleclick.net. The purpose of the cookie is to determine if the user's browser supports cookies.
VISITOR_INFO1_LIVE5 months 27 daysThis cookie is set by Youtube. Used to track the information of the embedded YouTube videos on a website.
YSCsessionThis cookies is set by Youtube and is used to track the views of embedded videos.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
CookieDurationDescription
CONSENT16 years 5 months 26 days 13 hours 25 minutesNo description
yt-remote-connected-devicesneverThis cookies is set by Youtube and stores the user's video player preferences using embedded YouTube video.
yt-remote-device-idneverThis cookies is set by Youtube and stores the user's video player preferences using embedded YouTube video.
SAVE & ACCEPT
Powered by CookieYes Logo