- 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
- Apitd_api_top_bar_template::update_key
- Apitd_api_top_bar_template::update
- Apitd_api_top_bar_template::add
- ApiAPI – Top Bar Template – Introduction
- Apitd_api_single_template::update_key
- Apitd_api_single_template::update
- Apitd_api_single_template::add
- ApiAPI – Single Template – Introduction
- Apitd_api_footer_template::update_key
- Apitd_api_footer_template::update
- Apitd_api_footer_template::add
- ApiAPI – Footer Template – Introduction
- Apitd_api_smart_list::update_key
- Apitd_api_smart_list::update
- Apitd_api_smart_list::add
Hello Sylvester77,
1) If you want to change the header for category section, you have to use a bit of CSS code to do that. Try the code below and add it in Theme panel->Custom CSS area.
The code is ->
.category .td-banner-wrap-full {
background-color:red;
}
The result -> http://screencast.com/t/NHLfAxP5NR
2)If you want to change the color of the Widgets, please try the code below and add it in Theme panel.
The code is ->
.td_block_widget .block-title span {
color:red!important;
background-color:green!important;
}
The result -> http://screencast.com/t/L2dFV8oirM
If is not what you mean, please provide more details about your desired changes so I will be able to provide a more details.
Thank you for the message!
Hello,
I see now what you men. That is the separator line for the top menu: http://screencast.com/t/Mv1gfCfTT3.
If you want it removed, you can use this css to do it:
.td-header-style-7 .td-header-top-menu{
border-bottom:transparent!important;
}
Simply add the code in the theme panel->custom css box.
Thank you!
Hello,
Yes. They did customize quite a bit. The header is modified, and the width of the site as well: http://screencast.com/t/2ekmf82pjO
Thank you!
Hello guys, just bought you Theme and really like it.
But like always for beginners I need some support.
I have some minor issues in the homepage http://www.urban.dog/urbandog/
1. Ad is showing not in the same height as block next to it
How can I optimize the height. Ad should be shown at same height as content and the Tag “Advertisment above”
http://www.screencast.com/t/fmefOPnXTBvh
2. I´ve set a block content and try to set a border, but the border is not shown. How can i set the border?
Is like that: http://www.screencast.com/t/SubMELexY
And should be like that: http://www.screencast.com/t/wekMFMJx
3. Space between Title Block and Big Grid Block
I´ve set a extra Title Block as you can not set Title with big grid blocks but now the space is bigger than on normal blocks with Title. How can i change a smaller space, so it should look the same as other blocks?
See here: http://www.screencast.com/t/S2ZCdj1g
4. DARK Theme works but need customs CSS for sidebar black fonts
I´ve changed some css so have a dark theme but on post pages I want to keep the template white, the issue is the sidebar copy is also white. How can i change it to black for the post pages?
See here: http://www.screencast.com/t/aVJeaKuzZq
The CCS I´ve added with help of the forum here:
.td-footer-wrapper, .td-banner-wrap-full, .td-main-content-wrap,
.td-main-page-wrap, .td-category-grid, .td-category-header {
background-color: #141414;
}
.entry-title a,
textarea
{
color: white !important;
}
Thank you
Hello
Please try the code below and add it in Theme panel->Custom CSS area.
The code is ->
.td-header-sp-recs img {
left: 28px;
}
The result -> http://screencast.com/t/v7vsXsBr
Hope this helps!
Thank you for the message!
Hello,
The header color can be changed from here: http://screencast.com/t/Jon59MkadmoI
The hover color on this header type only highlights the menu option using a grey shade. The hover color cannot be changed from the theme panel.
Thank you!
I guess my question is, can the dropdown items in the menu NOT be coming from subcategories? That way i can have a menu called “More” and show any remaining categories that didn’t fit into the header menu.
Hi,
I would like to have a larger logo on my website but it seems to keep resizing to 272×90 pixels no matter what size I upload. I am using header template 10, which to my understanding should allow me to upload a logo of any size. Could someone please explain to me, in simple steps (I’m relatively new at this!), how to fix this issue?
Thanks!
My site: dev.boundary2.org
Hi guys, i searched this forum and made try and fail, it looks almost cool, but need some more custom css.
This is what I´ve insert:
.td-footer-wrapper, .td-banner-wrap-full, .td-main-content-wrap,
.td-main-page-wrap, .td-category-grid, .td-category-header {
background-color: #141414;
}
.entry-title a,
textarea
{
color: white !important;
}
How can I Change:
1. The Category Header Color: http://www.urban.dog/category/du-und-dein-hund/
2. Sidbar Widgets Color on Post Pages: http://www.urban.dog/du-und-dein-hund/anschaffung/falls-du-ueberlegst-ob-es-ein-mix-oder-ein-rassehund-werden-soll/ as it is white now
Appreciate your support
This fixed it
Header.php
<div class=”td-container”>
<?php wp_nav_menu( array( ‘theme_location’ => ‘sub-menu’, ‘container_class’ => ‘nav_sub’ ) ); ?>
</div>
Functions.php
// Add Sub Menu
function register_my_menu() {
register_nav_menu(‘sub-menu’,__( ‘Sub Menu’ ));
}
add_action( ‘init’, ‘register_my_menu’ );
Custom CSS
.td-container .nav_sub ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #fff;
}
.td-container .nav_sub li {
float: left;
margin-left: 0;
}
.td-container .nav_sub li a {
display: inline-block;
color: #666;
text-align: center;
padding: 13px 13px;
text-decoration: none;
}
.td-container .nav_sub li a:hover {
background-color: #d9d9d9;
}
Hi,
You can use this css to center it:
@media (max-width: 767px){
.td-header-style-8 .td-header-top-menu {
display: block!important;
width: 116px!important;
margin-left: auto!important;
margin-right: auto!important;
}
}
Thank you!
Hi, when using header style 7 and top bar is enabled, there is a thin line under the top bar.
I think, that it is not stylish this thin line above tho logo.
Is it possible to hide or cut short this line?
thanks
Tibor
BUG (Tested in Chrome latest, 1366×768, Example page: http://inserbia.info/today/2016/01/serbian-police-vs-arab-refugee-children/):
– Header Style 8 (Hybrid menu 2) – When sticky menu is turned on, when user scrolls down and sticky menu appears, the mega menu is floated left instead center. Also, default logo space size (i think it was 250px) goes over first menu item and prohibits hovering/opening of associated submenu.
– After upgrading (Newspaper 3 to Newspaper 6) and turning on Ajax for page view counter, all page views reset to 0 views (30K+ posts). It is not big deal for me, but still … Example page had 50K+ views.
IMPROVEMENT:
– There should be a notice (maybe there is a one but I didn’t saw it) that users cannot start video in video post if default post template (site wide) is set to Style 7. Currently, only featured image (video grab) is present but there is no video file to watch (upgrade from Newspaper 3 to latest). Check example page.
– Changing default post template for all posts and single post is great, but how about changing default post template category based? I.e. I really like Style 7, but it is not good for my Video category, so I want to change ONLY in category “Video” to be default post Style 1.
– There should be 1 more field added for posts (where source, via, … is) and that is Photo credits.
– It would be nice to have (on frontend) for each post: Date and time published, date and time updated, click to get shortlink (if shortlinks are enabled).
– Add AMP support for mobile resolutions.
PERVERSION:
– Add HTML5-based Text-To-Speech library so we can have “Read me!” button on front.
Lso i used in .htacces Chris code
# END WordPress
AddType text/javascript .js
AddType application/vnd.ms-fontobject .eot
AddType application/x-font-ttf .ttf
AddType application/x-font-opentype .otf
AddType application/x-font-woff .woff
# BEGIN Expire headers
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault "access plus 5 seconds"
ExpiresByType image/x-icon "access plus 2500000 seconds"
ExpiresByType image/jpeg "access plus 2500000 seconds"
ExpiresByType image/png "access plus 2500000 seconds"
ExpiresByType image/gif "access plus 2500000 seconds"
ExpiresByType application/x-shockwave-flash "access plus 2500000 seconds"
ExpiresByType text/css "access plus 700000 seconds"
ExpiresByType text/javascript "access plus 700000 seconds"
ExpiresByType application/javascript "access plus 700000 seconds"
ExpiresByType application/x-javascript "access plus 700000 seconds"
ExpiresByType text/html "access plus 600 seconds"
ExpiresByType application/xhtml+xml "access plus 600 seconds"
ExpiresByType font/truetype "access plus 2500000 seconds"
ExpiresByType font/opentype "access plus 2500000 seconds"
ExpiresByType application/x-font-woff "access plus 2500000 seconds"
ExpiresByType image/svg+xml "access plus 2500000 seconds"
ExpiresByType application/vnd.ms-fontobject "access plus 2500000 seconds"
</IfModule>
# END Expire headers
# BEGIN Cache-Control Headers
<IfModule mod_headers.c>
<filesMatch "\.(ico|jpe?g|png|gif|swf)$">
Header set Cache-Control "public"
</filesMatch>
<filesMatch "\.(css)$">
Header set Cache-Control "public"
</filesMatch>
<filesMatch "\.(js)$">
Header set Cache-Control "private"
</filesMatch>
<filesMatch "\.(x?html?|php)$">
Header set Cache-Control "private, must-revalidate"
</filesMatch>
</IfModule>
# END Cache-Control Headers
<IfModule mod_headers.c>
Header unset ETag
</IfModule>
<IfModule mod_alias.c>
RedirectMatch 403 /xmlrpc.php
</IfModule>
Hi,
In order to do this, you can use a css trick and add a backgroun image to your menu but this can only be done with css. There is no setting in the theme panel for it.
You can add it like so: http://screencast.com/t/Ezje4qqYuqIq
.td-header-menu-wrap-full{
background-image: url("http://mag.imshmacked.com/wp-content/uploads/2016/03/bg-image.png");
background-repeat: no-repeat;
}
It will need further customization for responsiveness though.
I hope this helps.
Hi
Sorry for late reply!
We manged to take a look to a possible implementation for Facebook comments on posts but we haven’t found a way to synchronize the number of comments from Facebook on the post. We also test this on a default theme and got the same behavior. The comments posted to a post shared on Facebook aren’t displayed on the site.
The plugin works fine with the theme by adding the js from Facebook after the body tag in header.php: http://screencast.com/t/97g6RJdc02cp then it’s required this line in the file corresponding with the post template used: http://screencast.com/t/TpOJKoUG8g – http://screencast.com/t/mahp4jf2
<div class="fb-comments" data-href="<?php echo get_permalink($td_mod_single->post->ID); ?>" data-width="100%" data-numposts="5"></div>
I’ve added this on our list and the time comes our developers will try to improve it. This may take some time because we have a long implementation list and we take them one by one.
Thank you all for your feedbacks.
-
This reply was modified 10 years by
Andrei L..
Hello GazetteMediaGroup,
Please ensure you have used the right div’s to implement your header ad, like this ->http://screencast.com/t/dyN4oK5fbn
For more information about header ads, please consult our documentation here -> https://forum.tagdiv.com/header-ad/
Thank you for the message!
Hello,
You can achieve that result but it will need a few customizations. First, you will need to remove the header ad container like so: http://screencast.com/t/3MXoVpsx , then you can use this css for positioning:
.td-header-style-1 .td-header-sp-logo {
width: 285px!important;
height: 90px!important;
margin: 0px 28px 0px 28px!important;
}
You can change the values in the code to your preference.
Thank you!
I need not only post has its own background but even main picture and header were 100% width like here: http://joxi.ru/vAW4dgGIkGlN9r, If I put pot`s background than main picture and header will be cuted ( http://joxi.ru/bmok5aNHMwdz7m )
How can I make main picture and header full width ignoring background of categories?
Hi,
I posted in Envato support before and replied Alin V. (http://themeforest.net/item/newspaper/5489609/comments?page=367&filter=all#comment_12517324)
For Ads ok. I understand. Is very easy to modify.
For custom menu for category, I forgot to say you that I have only one category to be set with a custom menu. I saw the screenshots and I think that’s enough put some code from what I understand (yes, but which one?. I saw also Wp codex…). Please, if you can give it to me I’d be very grateful. I tried to call is_category function but does not work on line 12 of the header-menu.php file. I have just one category That I want to show a different menu.
Many thank
Eddy
I need to add a link to the website for the featured ad at the top of my header. It appears that I am either not doing it correctly or something is wrong.
Hi
Try this css in theme panel > custom code > custom css: http://screencast.com/t/YKdYy3rS
.td-header-style-8 .td-header-sp-ads .td-header-ad-wrap{
margin-top: 10px;
margin-bottom: 10px;
}
You can increase margins values as you want.
Thanks!
I want to make something similar
Hello bhadrabalaram,
Please try only the code below in your CSS area. -> http://screencast.com/t/jrRGNdmke
The code is ->
.td-header-style-3 .td-header-sp-logo {
padding-left:0px;
margin-left: 0px;
}
.td-header-style-3 .td-header-sp-logo a img {
margin-left: 0px;
}
The result -> http://screencast.com/t/ndhjGZlxZqP
Hope this helps!
Thank you for the message!
Hi,
how can i change the header height? I’m working in local, style 1 default
http://s13.postimg.org/r6f196zx3/Schermata_2016_03_02_alle_15_19_55.png