- NewspaperHeader Builder
- NewsmagHeader styles
- NewsmagHeader ads
- NewspaperHeader ads
- NewspaperHeader styles
- Apitd_api_header_style::delete
- Apitd_api_header_style::update_key
- Apitd_api_header_style::update
- Apitd_api_header_style::add
- ApiAPI – Header style – Introduction
- NewspaperSearch setup for custom post type
- NewspapertagDiv Composer – Website Manager
- NewspaperBookmark – Save For Later
- NewspaperWooCommerce: Happy “Add to Favorites!”
- NewspaperModal Popup
- NewspaperFlex Block Settings Guide
- NewspaperPosts Loop Element
- NewspaperHow to Add a Logo in Newspaper
- NewspaperDefault Category Settings
- NewspaperWhen tagDiv Composer is Not Working
Hi,
Please use this custom css to fix this:
@media (max-width: 767px){
.td-header-bg .header-style-3 .td-logo img {
position: fixed;
top: 3px;
z-index: 3;
width: 180px;
height: 48px;
}
.td-menu-placeholder .td-affix {
height: 48px;
z-index: 2 !important;
position: fixed !important;
}
}
Should work like this: http://screencast.com/t/OTIVJzbYW8p
The logo looks like that because of it’s original size, try to add an logo for mobile from theme panel.
Thanks
Hi,
You can change this from theme panel > excerpt, like this: http://screencast.com/t/GNz46lKfeAM
Thanks
Hi,
I have 8 menu item and I’m going to add a few more in the future, but the menu in tablet is broken.
Screenshot: http://snag.gy/Tjr3C.jpg
There is any way to fix this?…
Hi,
Use the following custom css to fix the header:
@media (max-width: 767px){
.mobile-logo-wrap img {
top: 2px !important;
height: 100% !important;
}
}
@media (min-width: 768px) and (max-width: 1018px) {
.header-logo-wrap {
height: 69px;
}
.header-logo-wrap img {
margin-top: 20px;
}
}
@media (min-width: 1019px) and (max-width: 1200px) {
.header-logo-wrap {
height: 80px;
}
.header-logo-wrap img {
margin-top: 25px;
}
}
@media (min-width: 1201px){
.header-logo-wrap {
height: 100px;
}
.td-header-bg .header-logo-wrap img {
margin-left: 67px;
margin-top: 28px;
}
}
Noticed that you have figured out how to change the background: http://screencast.com/t/t7GgF5vlI
Glad you did!
Thanks for the message!
Hi,
Use this css to make the logo look like this: http://screencast.com/t/22Ydp8GV7a3R
.mobile-logo-wrap img {
height: 100% !important;
width: auto !important;
top: 0px !important;
}
@media (max-width: 767px) {
.td-menu-wrap {
height: 55px !important;
}
}
Change the values as you like.
Regarding the “menu icon” I have noticed that it’s there now: http://screencast.com/t/DJlgZSaviL also looks like it should. Please let me know if you have any other issues with this.
Thanks
Hi
Can you tell me in which file I can reduce the number of words of the small post’s header in the big slide???
Thank you
Groovy. Funnily enough I had planned to make a plugin for social media sharing icons, since we did that for our main business site (not running on WP, but in house CMS we had built in 2005/7; but allows some of the same kind of hooks and drop-ins, but is running shtml vs php). Now, no time, sadly. 🙂
Hi Lucian,
Really appreciating the full support from your side. I integrated the ads on my website thatcoolwebsite.com. The header ad is cut off. Though I am using the standard 728×90 px ad. Can you check it and provide suggestions?
Thx – it works.
Hi,
Follow these steps:
1. First you have to register the new-menu, for that go to td_menu.php file and add this line: http://screencast.com/t/WJy9nhodUS
'header-menu-login' => __( 'Header Menu login (main)', TD_THEME_NAME),
You will get this result: http://screencast.com/t/ihF4cmqRgq
2. Secound go to menu-header.php file and add this condition like, this: http://screencast.com/t/OtKQsOJosx0
if ( is_user_logged_in() ) {
wp_nav_menu(array(
'theme_location' => 'header-menu-login',
'menu_class'=> 'sf-menu',
'fallback_cb' => 'td_wp_page_menu',
'walker' => new td_tagdiv_walker_nav_menu()
));
} else {
wp_nav_menu(array(
'theme_location' => 'header-menu',
'menu_class'=> 'sf-menu',
'fallback_cb' => 'td_wp_page_menu',
'walker' => new td_tagdiv_walker_nav_menu()
));
}
3. Do the same for mobile menu, into menu-mobile.php file: http://screencast.com/t/3CQa5fpkw
if ( is_user_logged_in() ) {
wp_nav_menu(array(
'theme_location' => 'header-menu-login',
'menu_class'=> '',
'fallback_cb' => 'td_wp_no_mobile_menu'
));
} else {
wp_nav_menu(array(
'theme_location' => 'header-menu',
'menu_class'=> '',
'fallback_cb' => 'td_wp_no_mobile_menu'
));
}
After this set which menu you want for logged visitors and which for unregistered visitors and test it.
Hope this helps!
Sorry for the delay!
Thanks
Hi,
I’m having an issue with logo display on mobile.
I’m using header style 2, and i’ve configured same image on both places (Logo => Logo upload & Logo for mobile => Logo mobile In Menu).
I had logo problems in the past, and i was told to add following css:
.mobile-logo-wrap img {
height: 100%;
width: auto;
top: 0px;
}
but since recent theme upgrades (older than 4.2.1), i have a new display issue.
Is there a way to use Style 2 and adapt custom CSS ?
my site:
http://www.fantasy-coach.fr
Also, ‘menu icon’ is no more visible on mobile, this is since 4.2.2 upgrade, any advice on that?
thanks for your herp
BR
Hi,
You could use something like this: http://screencast.com/t/iSUeeUwbzH8M
Here is the code for the form: http://pastebin.com/k6Ka33Nt
Note that I only tested this for the header menu search.
Thanks
@Christopher Just to let you know that I have fixed the issue but still messes up the mobile site. So, I moved the plugin from Bootstrap to PurceCSS and it works fine.
Hi,
Please try this: http://screencast.com/t/jdD4n3nAq
.menu-header-container .sf-menu .menu-item .td-mega-menu .sub-menu , .menu-header-container .sf-menu .menu-item .sub-menu .td_block_inner {
width: 800px !important;
}
.menu-header-container .sf-menu .menu-item .td-mega-menu .sub-menu
{
position: relative;
left: 140px !important;
}
Change the width value and the left value for position as you need. Note that you will need to make this adjustments to each screen width in order to make it look good, use the media query snippets to style the mega menu for each screen.
Thanks
Ok. Thanks!
tagDiv, please help if possible.
Sorry, I don’t have any free time to help with plugin development. I’m just now starting to work on something requiring full attention the next month, so I won’t be helping out here anymore, except to report something interesting (as I did the other day in PageSpeed sticky), or to poke the team about a bug I ran into.
I’d likely start by checking the btn classes already in use by the theme in the main style.css and related css files/less files.
Or, make new classes like btn-mehedi.
I just removed Bootstrap from the plugin and the social icons got messed up.
http://screencast.com/t/iW2qAq5r
Is there anyway I can change the classes on the header.php but make it look the same?
Hi,
I haven’t used any classes other than the “btn” classes of bootstrap. It would be great if you could take a look by installing the plugin on your localhost or other site..please?
Thanks!
The theme uses custom version of bootstrap 3x, so you’re likely using a conflicting class, or reloading bootstrap when already being loaded by theme?
Hi
I am currently working on a plugin for social sharing. I have finished working on it and uploaded it to my server from my localhost. After that I noticed that the header ad and the top widget section got messed up.
I am using Bootstrap 3.2.0 and Font Awesome on the plugin. I can’t figure out why is it showing like that.
P.S: It worked fine with all the other themes.
tagDiv, please take a look. You can download the plugin from here.
Please help.
Hi,
@Christopher thanks for sharing!
Sorry for the delay. We have this on our todo list, we will look into it and fix it in the next theme update. Mean while you can remove the code Christopher pointed from the header this will also remove the og: tag.
Sorry for this!
Thanks
Hi,
You can edit each template you want and add the shortcode using the do_shortcode() function. Should look something like this: http://screencast.com/t/esLXMffm8hQ
Do this for each template you want: http://screencast.com/t/HtwL21Cs
<?php echo do_shortcode('[td_ad_box spot_id="custom_ad_1"]');?>
Hope this helps!
Thanks
Hi,
I believe you have added the menus the wrong way, the top menu looks like in your case it’s where the header menu should be and the header menu it’s at the top where the top menu should be.
Switch the menus between them, should look better afterwards, also note that if you wanted to have the menus like this the top menu doesn’t support the menu as it is now.
Regarding the size of your site, check your site using PageSpeed Insights and note how you can optimize your site.
You could also read this topic about page speed: https://forum.tagdiv.com/pagespeed-guide/
Hope this helps!
Thanks
Weird… So it could be some of mye custom CSS then?
This is the only custom CSS I’ve added relating to only style 3:
.single_template_3 .td-post-header-full .entry-title {
margin: 0px 21px 14px 21px;
font-family: 'Roboto Condensed', sans serif !important;
font-size: 50px;
line-height: 48px;
}
This is the url to the post:
http://www.vitamail.no/karriere/mot-en-av-norges-best-betalte-21-aringer/
Hello,
i want to place a AD between the Content (Home, Pages, Article, Categorys…) an the header.
On the Home-Page is it possible with the Page-Builder, i know. But how can i do it on the other sites? Where should i place the Adrotate Shortcode to display the Banner?
Thx for your help.
Sven