- NewspaperHeader Builder
- NewspaperHeader ads
- NewspaperHeader styles
- 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
- NewspapertagDiv Cloud Library Plugin
- NewspapertagDiv Composer Tutorial
- NewspaperUsing the Theme Translations with WPML
- NewspaperInstagram in Newspaper WordPress Theme
- NewspaperWeather Shortcode
- NewspaperThe Mobile Theme
- NewspaperLogin – How to Enable User Registration
@ryehillmedia2018! if you look under Appearance>Menus in your WordPress dashboard, you will see an option to assign a menu as “mobile menu” alongside other options like top header menu and header menu (main) as shown here http://prntscr.com/kdmspd (the mobile menu option will show at the end if you have the mobile plugin installed_. Make sure you have selected the main menu in that section and just tick the mobile menu option so that it now has the main menu and the mobile menu ticked and save. Clear your caches as above and check again if it worked. You can also create another menu and assign it to the mobile menu.
I’m trying to add a background image to my front page behind Block 5. See the screenshot.
The problem is the image is really pixelated. I’m using an image that is 4000 pixels wide.
Other settings:
General Tab
Vertical Align: Top Setting
Row Stretch: Stretch Row and Content (but I’ve tried them all)
Extra Class: td-travel-header
CSS Tab
Background Style: Cover
Background Position: Center Center
H. Align: Center
Display: Show
All the other settings are default.
Dear, I have uploaded the logo to the header at 183 x 183 and it works awesome. But, when I uploaded the same dimension logo to the footer than it somewhat deteriorated or stretched. That’s why I am now using the footer logo 150 x 150 dimension.
Hi, I’m trying to change my logo. I uploaded the new logo in the theme panel under header, and it changed everywhere except for my homepage. How can I change the logo on my homepage?
thank you
Hi Simion,
now I update everything and the google fonts can be deactivated. So this problem is solved. 😉
But when I change the fonts in the header or the main menu – it doesn’t matter which font or custom font I use the result is always the same. The desing of the the fonts doesn’t change. I changes from the design I want to another when I deactivate the google-fonts. But the new design what I don’t like can’t be changed.
What can I do?
Thanks
Sascha
Good Morning
I’m also using the travel demo. However I also have the problem that the photo in the header appears always blurred. I already put the photo in the size of 1920×815 and it always remains blurred. The photo has excellent quality. I do not understand why.
Thank you
Thank you
Hello,
If you want to increase the size of your Header Ad and Logo, you need to use such a custom CSS code. Below, I gave you an example of this case but only for Desktop. Notice that for the rest of the devices, it might be necessary to be adjusted.
.td-header-ad-wrap img{
margin-right: 0;
width: 500px!important;
}
.td-header-sp-rec{
width:500px;
}
.td-header-sp-logo{
width:400px;
}
.td-main-logo img{
width:400px;
}
The result is here -> https://www.screencast.com/t/hHLOv5Yd66qz
Thanks for your understanding!
Thanks Catalin, that is what i need,
but can a adjust the Logo and Ad size in the header?
Wanna have the Logo and Ad area at least in same size.
Sorry to bother you.
Hello devmdn,
1)Use the code below ->
.td-mobile-content li a {
font-size: 20px;
}
2)There’s an option for it in Theme panel -> Custom CSS area -> https://www.screencast.com/t/ggOQ4aJu7TO
If you want to change the Search Icon color, use the code below ->
.header-search-wrap .td-icon-search{
color:green;
}
Thanks for your understanding!
Hello wjs@diema.at,
You should use the code below and place it in Theme panel -> Custom CSS Area.
.td-header-ad-wrap img{
margin-right: 0;
}
The result is here -> https://www.screencast.com/t/voCj6I9HW3lt
Thanks for the message!
Hi,
Those are different header styles, header style 11 versus header style 1. Regardless of this the menu height can be controlled with the line height settings
– https://www.screencast.com/t/CQmcvSha
Thanks
Hey! I added shortcodes in header.php and loop-single pages and when i comment on bottom of articles it’s not showing on facebook posts, it’s showing as YOU COMMENTED ON FACEBOOK PAGE. How do i connect facebook posts’ comments to my website articles.
Try it like this, should only change the main header menu
add_filter( 'wp_nav_menu_args', 'menu_switcher' );
function menu_switcher( $args ){
$url = 'http://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
if (strpos($url,'/en/') !== false) {
if( 'header-menu' == $args['theme_location'] )
$args['menu'] = 'English';
}
return $args;
}
Yes Simion C., switch the menu depending on URL.
This code is OK add_filter('wp_nav_menu_args', function ($args) {
$url = 'http://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
if (strpos($url,'/en/') !== false) {
$args['menu'] = 'English';
}
return $args;
});
But also Top Header Menu change!
Please, do a try on your WordPress installation to see why also Top Header Menu change!
Hello Catalin,
1.) the header is not right aligned – see your own screenshot – the right end of the header ad (which has a width of “468px”) should be place at the right end of the header (red ball right above the magnifying glass)
2. Header style 10 has no ad, just the logo and i need the header with logo left and ad right.
Thanks
Hi,
How i have few questions about mobile version. I also do not want the following change requests not to effect the desktop version.
1) Is there any way to change mobile menu text sizes?
2) Is there any way to change the header menu bar color and menu & search icon colors?
3) Is there also any way to show set a logo only for mobile?
Thank you.
So maybe something like this – http://i.prntscr.com/8h-eudXtRGKt6Y1tGnLLng.png
.td-category-header .td-category a {
font-size: 14px;
}
.td-category-siblings .td-category {
height: 23px;
}
Hello sfmonitor,
Try to use the code below and place it in Theme panel -> Custom CSS area.
.td-header-menu-wrap{
display:none;
}
Thanks.
Hi!
I have:
– Header Menu named “Italian”
– a second menu named “English”
– a third menu as Top Header Menu named “Languages”
I’m using this code add_filter('wp_nav_menu_args', function ($args) {
$url = 'http://' . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
if (strpos($url,'/en/') !== false) {
$args['menu'] = 'English';
}
return $args;
});
The problem is that when I switch to a URL that contains /en/ I see the “English” menu as Header Menu but also Top Header Menu will be replaced with the “English” menu! When I switch to a URL that contains /en/ Top Header Menu named “Languages” must be present.
Hi,
That is actually an image, so there would be no setting to change it’s color. You could remove that and use a CSS border or shadow instead. This is an example with a shadow
– https://www.screencast.com/t/uZGHxcfqq
Code used in the example
.td-header-gradient:before {
display: none;
}
.td-header-gradient:after {
content:"";
position:absolute;
height: 12px;
width: 100%;
bottom:0;
-webkit-box-shadow: 0px 12px 5px 0px rgba(186,112,186,1);
-moz-box-shadow: 0px 12px 5px 0px rgba(186,112,186,1);
box-shadow: 0px 12px 5px 0px rgba(186,112,186,1);
}
Shadow generator here if you want to use it
– https://www.cssmatic.com/box-shadow
Yes, need this same help. What file would I need to edit if the option isn’t there to add this to the header.
Google wants a code in the head section and another one in the body.
Hello wjs@diema.at,
1)I have inspected your website and I saw that your header ad is just right aligned -> https://www.screencast.com/t/htO9lbpFL
2)We recommend using another header style which uses the logo in full sizes, like Header style 10. -> https://forum.tagdiv.com/header-styles/
Thanks.
Hi,
The header styles that display the logo and the header ad on the same line, these would require contain a 728 x 90 ad, that would be the proper size
– https://support.google.com/adsense/answer/17955?hl=en
Header styles that display the logo on a different line would allow a bigger ad size
– https://forum.tagdiv.com/header-styles/
Hi,
You have to create your logos to have the same sizes and then, load them to the header and footer logo section. Please understand that way…
Thanks for your understanding!
So maybe like this – https://www.screencast.com/t/L6TUKcrSA
.tdm-header-style-1 input[type="search"] {
padding-top: 3px;
padding-bottom: 5px;
}