• 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 Logo issue

Logo issue

Posted in: Newspaper
Post count: 61
pbc
#263125
Nov 21, 2018 at 8:49 am

Hi,I have 2 issues:

1.I use default logo size 272×90, and it’s hardly seen. How I can make header section higher, in order to use custom size logo. I use Header style 12. I also will need to display it on mobile with bigger size than default.

2. How to position search icon on right side, now it shown like here:

search

  • This topic was modified 7 years by pbc.
  • This topic was modified 7 years by pbc.
Post count: 61
pbc
#263197
Nov 21, 2018 at 1:40 pm

I found that same logo on style 7 looks great, so tried to copy it css into Style 12, like so:



.td-header-style-12 .td-main-menu-logo img {
    max-height: 106px;
    position: relative;
    padding: 6px 0;
    line-height: 106px;
    vertical-align: middle;
}

It doesn’t work. Logo size I need – 374px x 90px

  • This reply was modified 7 years by pbc.
Post count: 20688
Simion C.
#263265
Nov 21, 2018 at 4:36 pm

Hi,

1. Most header styles are designed to use a recommended logo size
– https://forum.tagdiv.com/logo-favicon/
Only header styles 9, 10 and 11 are different. These header styles will display the logo in the any size you create it
– https://forum.tagdiv.com/header-styles/
For example this theme demo uses header style 10 and a large logo
– https://demo.tagdiv.com/newspaper_cars/

When using header style 12 the total height of the header will be limited like this
– https://www.screencast.com/t/xPG0DeYjuR
If you want to use a logo with a 90px height, try to increase the line height of the menu to 90px, that will increase the overall height
– https://www.screencast.com/t/qJDQGUqJ8Kkg
Then set your desired logo, see how it looks.

2. The search can be displayed wither in the top bar or in the main menu
– https://www.screencast.com/t/cIX9JaxZItDP
When in the top bar it will appear before the socials. To place it to the right, after the socials, try this code
– https://www.screencast.com/t/Yt0fVR3RS1bz

.td-header-sp-top-widget .td-search-btns-wrap {
float: right!important;
}

Thanks

Post count: 61
pbc
#263358
Nov 22, 2018 at 10:26 am

Hi, Simion. I’ve changed line height as suggested, but this still not enough.
I’ve added this code to css:


.td-header-wrap, .td-header-style-12,.td-header-menu-wrap-full  {
   height: 110px;

}

.td-header-style-12 .td-main-menu-logo img {
    max-height: 110px;
    margin-right: -22px;
}

And now logo looks good, but megamenu overlaps with a main menu, like here:

mega

And menu links need to place on the middle by horizontal, like here:

menu

How to fix that? Appreciate your help.
Thanks

  • This reply was modified 7 years by pbc.
Post count: 20688
Simion C.
#263417
Nov 22, 2018 at 2:11 pm

Hi,

Could you provide a link to the website so I can take a look? Remove the code you used so I can see how it actually looks.

Post count: 61
pbc
#263426
Nov 22, 2018 at 2:52 pm

Here

https://goo.gl/PSrSbp

Please take a look at the logo in footer also, it should be bigger, so people can see it.

Thanks

  • This reply was modified 7 years by pbc.
Post count: 20688
Simion C.
#263457
Nov 22, 2018 at 5:22 pm

I can make it bigger but it will overlap the menu items
– https://www.screencast.com/t/dmJ1sfpI
The reserved space for the logo in this header style is 190px only, the rest will be used by the menu items, from the total width of the container.

Maybe if you stretch the header elements first – https://www.screencast.com/t/54Kf7kK4QO
That will create the space for a larger logo without interfering with the menu items.

Try to use the stretch settings and then use this code (you can modify the values used)
– https://pastebin.com/SZdn3ptN

I should mention that we are working on a header builder, it will be released in coming updates. Maybe something like this will be possible without using any code, I can’t say at the moment.

For the footer you can use a footer template with a full row, not split in columns. For example style 4
– https://forum.tagdiv.com/footer-templates/
Then you can use a much larger logo, it will not be limited as it is now
– https://www.screencast.com/t/3RMnqymt7

Post count: 61
pbc
#263462
Nov 22, 2018 at 5:56 pm

Stretching + code did the trick.
Thank you very much, Simion. Appreciate your help.

Viewing 8 posts - 1 through 8 (of 8 total)
The forum ‘Newspaper’ is closed to new topics and replies.
pbc
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