- NewsmagHeader styles
- NewsmagHeader ads
- NewsmagtagDiv Composer Tutorial
- NewsmagCategory templates
- NewsmagSmart list ads
- NewsmagWeather Widget
- NewsmagInstagram widget
- NewsmagPage Menu
- NewsmagMain menu
- NewsmagTop bar templates
- NewsmagLogin – how to enable the user registration
- NewsmagLogo & Favicon
- NewsmagFooter templates
- NewsmagCategory grid styles
- NewsmagCategory top post styles
- NewsmagHow category settings work
- NewsmagTheme colors introduction
Hi,
@shafvan When you create a new ad using Adrotate you can add target="_blank" http://screencast.com/t/clzLPmX88
@PatWire The theme doesn’t have a header style like this and it doesn’t allows 2 header ads by default. You will need custom modifications for this for the header template that you use, so I suggest to hire someone to do this for you as we cannot offer custom work, sorry!
Just a tip if you want to modify the header style 1 you can add a container before the logo and use do_shortcode function to place a custom ad there. But you also need more css customization for that extra container and also to change the width of the header ad and logo.
Thanks!
Hello, just bought your theme and every time I try to install the visual composer plugin it fails and gives me this message:
Installing Plugin: Visual Composer
The Showcase Visual Composer plugin requires Visual Composer installed and activated.
The plugin does not have a valid header.
Downloading install package from http://evolutioncounseling.com/wp-content/themes/Newspaper/includes/plugins/js_composer.zip…
Unpacking the package…
Installing the plugin…
Destination folder already exists. /home/content/37/8111337/html/wp-content/plugins/js_composer/
Plugin install failed.
Thanks for your help,
Michael
If I couls just ask on this topic…I have the same issue – can rotate but is there a away to have an ad block each side of the header logo if logo centred? Or is it custom work?
thanks
Pat
Basically, just substitute your code from //show login widget to //if no menu in header-menu.php
Keep in mind that “_mi _before foundation-icons fi-torso” is an icon from foundation icons font. So you have to have the font installed or substitute icon for whatever you want.
Also, class “create” is another link that I use for when a user is logged in to show another icon, you can obviously delete it. In addition, some of the original code still there, in case if I need get back to original login menu.
In fact, if you just need a simple login logout the code could be much shorter.
-
This reply was modified 10 years by
Riskdiver.
Hi,
It is not so easy to change the logo size as the theme is responsive and it needs custom modifications to the default css for each screen device. I will try to provide a solution for this, but I suggest to hire a freelance if you need more customization. Please try this cusotm css in Theme Panel > Custom Css – http://screencast.com/t/E8fk5AuvCyEL
@media(min-width: 1141px) {
.td-header-style-8 .td-header-sp-logo {
height: 150px;
}
.td-header-style-8 .td-header-sp-logo img {
max-height: 150px;
}
.td-header-style-8 .td-header-menu-wrap-full {
height: 120px !important;
}
.td-header-style-8 .td-affix .td-header-sp-logo {
height: 94px !important;
}
.td-header-style-8 .td-header-menu-wrap {
height: 120px !important;
}
.td-header-style-8 .td-header-menu-wrap.td-affix {
height: 44px !important;
}
}
@media(min-width: 768px) and (max-width: 1140px){
.td-header-style-8 .td-header-sp-logo {
margin-top: -20px !important;
}
}
You can add a Big Grid or Slide like any other block in your page content. Please make sure that you configure right – https://forum.tagdiv.com/block-settings-tutorial/ Her is also a video tutorial how to create a page – https://www.youtube.com/watch?v=rgWqozuqmJk
If you still have issues with it please provide more details, also some screenshots how you set it will help.
Thanks!
Hi
Try this custom css: http://screencast.com/t/1a24IGX0v
.td-post-header h3{
margin-top: 0px;
margin-bottom: -5px;
margin-left: 5px;
display: inline-block
}
Thanks!
Hello gagosg,
You need to add this code to the custom css tab in the theme panel:
@media (max-width: 767px) {
.td-icon-mobile:before, .td-icon-search:before{
color: black;
}
@media (max-width: 767px){
.td-header-wrap .td-header-menu-wrap-full, .td-header-wrap .td-header-menu-wrap, .td-header-wrap .td-header-main-menu {
background-color: #FFF !important;
}
It looks like so: http://screencast.com/t/Goaq9vat
Thank you.
-
This reply was modified 10 years by
Bogdan B..
Thank you guys.
doucare1971
No plugin. Simple css code, mostly border-radius: 10px 10px 10px 10px; on divs.
okti
It’s quite easy. Userpro has a class “popup-login” that you have to implement inside the header-menu.php
In theme settings – show sign in/join, and disable top bar.
thanks for this tip, it helps a lot
just to let others know that file to edit on V6 is
public_html/wp-content/themes/Newspaper/parts/header/top-menu.php
around line 77
Hi
thanks for this widget, but when we activate it, wordpress says
“The plugin generated 3 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.”
We use latest WP 4.3 , could you please check?
thanks
Still having the issue. The errors in the console are all coming from (or trace back to) the DoubleClick ad network (Essentially AdSense). They shouldn’t be affecting mobile vs desktop tap space.
The issue is one I’ve seen before. I don’t know if it’s related to the theme but I’d imagine so since switching themes automatically fixes the problem. When using a 3rd party provider of AdSense ads there is this transparent block (320×320) that appears below ads. You can’t see it, but it covers up menus usually. This time, the header ad was covering up the first position in the block on mobiles. Added height: auto !important to the img tag in the custom css for mobiles and problem solved.
I had to do the same for the sidebar ads as well a while back. I had a grid up top for a long time which, like the menu and logo – uses a higher z-index value so the transparent block fell beneath it and wasn’t an issue.
Container limits on images in ad spaces (I only use theme provided spaces for ads) would be a smart addition to Newspaper and NewsMag (where I first noticed the problem last year). But this is resolved for me now. Thanks for looking into it, Alin.
Hello enpomedia,
It seems you have a custom CSS that sets the mobile background color to white. If you want it set to transparent just change the css that Andrei gave you: https://forum.tagdiv.com/topic/how-can-i-change-the-color-of-moblie-main-menu/ and replace the #fff color to transparent
It should look like this:
@media(max-width: 767px) {
.td-header-wrap .td-header-menu-wrap-full, .td-header-wrap .td-header-menu-wrap, .td-header-wrap .td-header-main-menu {
background-color: #transparent !important;
}
Thank you.
-
This reply was modified 10 years by
Alin [tagDiv].
-
This reply was modified 10 years by
Alin [tagDiv].
Hello,
I have choose header Style 8. Is it possible to increase the height of the logo and the menu length?
I have a logo on height and is difficult to see because your logo’s format is still long.
Can you help me,
Thanks a lot,
NB : bravo for your theme that is otherwise very complete and beautiful!
Hello Roboman,
The top bar’s width depends on the type of header you are using. Different headers generate different top bar layouts. The most simple solution to your problem is to set a background image or color to the theme via the theme panel like so – https://forum.tagdiv.com/bg-settings/. This will make the site boxed so menus and panels will no longer stretch to 100% any more.
Thank you.
-
This reply was modified 10 years by
Bogdan B..
Hi,
Replied here – https://forum.tagdiv.com/topic/slider-full-page/
If you refer to the header template, there are some full width header styles – http://screencast.com/t/nSPqtxbNRMq when the background color/image is not used. When it is used the site will automatically switch to boxed version.
If you refer to the page content unfortunately the tag div block were not designed to be stretched using the Visual Composer row option, sorry. Like I said in the other thread I added this on our list but I cannot promise you anything.
Thanks!
In the error log in the public folder I got this
[01-Sep-2015 19:42:17 UTC] WordPress errore sul database Query execution was interrupted per la query SELECT option_value FROM gp_options WHERE option_name = 'widget_td_block_popular_categories_widget' LIMIT 1 fatta da require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), call_user_func_array, wp_widgets_init, do_action('widgets_init'), call_user_func_array, WP_Widget_Factory->_register_widgets, WP_Widget->_register, WP_Widget->get_settings, get_option, W3_Db->query, W3_DbCache->query, W3_DbCallUnderlying->query, W3_Db->query, W3_DbProcessor->query, W3_Db->default_query
[01-Sep-2015 19:42:17 UTC] WordPress errore sul database Query execution was interrupted per la query UPDATE gp_options SET option_value = 'a:5:{s:8:\"facebook\";a:5:{s:5:\"count\";s:4:\"5200\";s:8:\"ok_count\";s:4:\"5200\";s:9:\"timestamp\";i:1441136535;s:7:\"expires\";i:10800;s:3:\"uid\";s:17:\"GamesPrincessBlog\";}s:10:\"googleplus\";a:5:{s:5:\"count\";i:7463;s:8:\"ok_count\";i:7463;s:9:\"timestamp\";i:1441136535;s:7:\"expires\";i:10800;s:3:\"uid\";s:16:\"+GamesPrincessit\";}s:9:\"instagram\";a:5:{s:5:\"count\";i:2347;s:8:\"ok_count\";i:2347;s:9:\"timestamp\";i:1441136536;s:7:\"expires\";i:10800;s:3:\"uid\";s:14:\"games_princess\";}s:7:\"twitter\";a:5:{s:5:\"count\";i:2106;s:8:\"ok_count\";i:2106;s:9:\"timestamp\";i:1441136537;s:7:\"expires\";i:10800;s:3:\"uid\";s:14:\"games_princess\";}s:7:\"youtube\";a:5:{s:5:\"count\";i:1349;s:8:\"ok_count\";i:1349;s:9:\"timestamp\";i:1441136456;s:7:\"expires\";i:10800;s:3:\"uid\";s:15:\"GAMESPRINCESSTV\";}}' WHERE option_name = 'td_social_api_v3_last_val' fatta da require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), include('/themes/Newspaper/single.php'), get_footer, locate_template, load_template, require_once('/themes/Newspaper/footer.php'), td_api_footer_template::_helper_show_footer, load_template, require_once('/themes/Newspaper/parts/footer/td_footer_template_9.php'), dynamic_sidebar, call_user_func_array, WP_Widget->display_callback, td_block_widget->widget, td_block_social_counter->render, td_block_social_counter->get_social_network_meta, td_social_api->get_social_counter, td_social_api->save_cache, update_option, W3_Db->update, W3_DbCache->update, W3_DbCallUnderlying->update, W3_Db->update, W3_DbProcessor->update, W3_Db->default_update, W3_Db->query, W3_DbProcessor->query, W3_Db->default_query
[01-Sep-2015 19:42:17 UTC] WordPress errore sul database Query execution was interrupted per la query SELECT option_value FROM gp_options WHERE option_name = 'sharedaddy_disable_resources' LIMIT 1 fatta da require('wp-blog-header.php'), require_once('wp-load.php'), require_once('wp-config.php'), require_once('wp-settings.php'), do_action('init'), call_user_func_array, sharing_init, get_option, W3_Db->query, W3_DbCache->query, W3_DbCallUnderlying->query, W3_Db->query, W3_DbProcessor->query, W3_Db->default_query
In the admin error log I have a plugin that keeps giving error.
[02-Sep-2015 07:12:00 UTC] PHP Warning: Invalid argument supplied for foreach() in /home/zyypzwck/public_html/wp-content/plugins/monarch/monarch.php on line 5477
Hello
thanks for nice theme, it is so cool 🙂
May I request a feature here? if so please
=>make newspaper ‘s overall width wider and stretch-able to full screen (especially header part)
1068 width is really short nowadays, even yahoo use 1200 width now ;p
Here’s what the headers look like now:
http://www.screencast.com/t/8MCwNOjx
Here’s what my Theme settings look like where you described it:
http://www.screencast.com/t/VXI5tZebGq7
Does that help?
I don’t know actually how to explain my issue. I am having problem with the categories header that is shown just above the post. For example, there are headers like “Don’t Miss”, ‘TECH AND GADGETS’, ‘TECH AND GADGETS”PERFORMANCE TRAINING’ and along with them there are other small headers. I just wand to edit their names. Please help me out.
Hi,
I am not a tagDiv team member, but will try to explain the situation with Speed Booster. I think I get it correctly.
In the ideal situation all css files will load in header and all js files in footer for webpage speed. This is what is recommended and what Speed Booster is trying to do. But this is not required rule and every plugin or theme developer can follow it or not. If some plugin or theme is loading js files in header, this is because plugin’s author created it this way and if Speed Booster move it in footer, the plugin may stop working properly.
If you want SB to work properly and not to break your site, then you have to modify (or ask authors to modify) each plugin or theme, which are not following the good coding practices. Speed Booster itself is only trying to rearrange files positions, it is not a caching or minify plugin, so you can run your website without it too 🙂
I hope this info will help you to understand the situation about SB. And I am sure that if you have installed only tagDiv’s product, the plugin will work.
Thank you for your attention,
Mladen
Now is a clean WordPress and clean theme (http://blog.tsevillano.com/), we forget a plugin. And the problem is still.
Yes, all of sites are 3.8.1
– ar.precr.com.ar
– radiomitre.precr.com.ar
– la100.precr.com.ar
If i change the viewport on header.php the problem will be fix, but the site scaling isn’t proportionable.
Default Viewport:
<meta name=”viewport” content=”width=device-width, initial-scale=1″>
Viewport:
<meta name=”viewport” content=”width=device-width, user-scalable=no”>
Reference Link:
http://ar.cienradios.com/
http://la100.cienradios.com/
Im working with an advertisement company that needs me to change the posting settings for Template Style 11. Here is the information they sent me but I have no idea where to fix this. Need help:
We noticed that sometimes the flex code would populate the towers toward the middle, covering your content, instead of on the sides which is how it is suppose to load. This is the flex code as you have it on there now:
/* Flex */
cf_page_artist = “Insert artist variable here”;
cf_page_song = “Insert song variable here”;
cf_page_header = “.td-header-wrap”;
cf_page_element = “.td-main-content-wrap”;
cf_page_footer = “.td-sub-footer-wrap”;
cf_adunit_id = “39384221”;
cf_flex = true;
The highlighted section in the code tells our flex where your article’s content is, so it will expand around that. We would need you to make some slight adjustments to your CMS, because posts that contain videos are not outlined by the cf_page_element. Below, Steve our dev, laid out a solution to get around this issue. Please take a look and let me know if you are able to make these adjustments. Thanks.
the source code of this highlighted area looks like this:
<article id=”post-6248″ class=”td-post-template-11 post-6248 post type-post status-publish format-video has-post-thumbnail hentry category-gossip-grounds tag-kanye-west tag-kim-kardashian tag-kylie-jenner post_format-post-format-video” itemscope=”” itemtype=”http://schema.org/Article”>
<div class=”td-video-template-bg”>
<div class=”td-container”>
<div class=”td-pb-row”>
—
—
— so on
We proposed to add the class name, td-main-content-wrap, to the <article> tag, so our CF Flex Code knows it should expand the distance between the towers, to match the width of the <article> element – which is where the content lies.
The new source code would look like this:
<article id=”post-6248″ class=”td-main-content-wrap td-post-template-11 post-6248 post type-post status-publish format-video has-post-thumbnail hentry category-gossip-grounds tag-kanye-west tag-kim-kardashian tag-kylie-jenner post_format-post-format-video” itemscope=”” itemtype=”http://schema.org/Article”>
<div class=”td-video-template-bg”>
<div class=”td-container”>
<div class=”td-pb-row”>
Where do I go to change this? my site is http://TripleHQ.com if this helps. Thanks
Hi,
I’m not sure if this is what you mean. By default the logo on header style 1 has some margin and padding – http://screencast.com/t/5T7wgrYtW
If you want to customize it, you can do it via custom css in Theme Panel > Custom Css – http://screencast.com/t/bBJGLtg7LjSf
.td-header-style-1 .td-header-sp-logo {
margin: 28px 28px 9px 0px;
padding-left: 0 !important;
}
Thanks!
Hi,
You can try this custom css in Theme Panel > Custom Css – http://screencast.com/t/8coT6afZl
@media(max-width: 767px) {
.td-header-bg {
display: none !important;
}
}
Thanks!
Hi,
The header style 4 has boxed menu, you need to set the menu transparency if you want the background image also on menu http://screencast.com/t/NsRB6sPol – http://screencast.com/t/7oIcu75lL9M
And use this custom css in Theme Panel > Custom Css:
.td-header-style-4 {
background: white url('http://imgscenter.com/images/2014/09/13/Beauty-of-nature-random-4884759-1280-800.jpg') no-repeat;
background-size:cover;
}
Thanks!
-
This reply was modified 10 years by
Alin [tagDiv].