- NewsmagtagDiv Composer Tutorial
- NewsmagBlock settings tutorial
- NewsmagLogo & Favicon
- NewsmagFooter templates
- NewsmagUsing other ads
- NewsmagUsing Typekit fonts
Hello DarkStarzs,
All the custom CSS code should have been added in Custom Box area, from Theme panel, like this -> http://screencast.com/t/oGQu2iGG
Thanks for the message!
Hi,
The theme doesn’t have an option to add a background image to the header, it is an option only for background color. If you want to add a background image you will need to use custom css – https://forum.tagdiv.com/topic/header-background/
Thanks!
Hi,
It is custom made(custom code) in a text block add on the page – http://www.w3schools.com/howto/howto_js_dropdown.asp – http://www.w3schools.com/css/css_dropdowns.asp
Thanks!
Hello,
I have inspected again your website, and I noticed that you are not using the correct dimension for your logo. Please try to create a new logo with this size, like this -> http://screencast.com/t/YYR4TxeI -> http://screencast.com/t/gM8LZqAD5 Otherwise, you will never bring best results in our theme and that’s why your header is not right aligned. Also, I noticed that you have some custom CSS, you have change the width and that’s why will appear these problems. So, if you will use our theme without any additional customization made by you and if you will respect these parameters regarding on logo size, the theme will work like a charm. Otherwise, you will have to adjust every element until you will bring as you wish, but please notice that we cannot provide support for your additional customization, sorry!
Thanks for your understanding!
Hi,
There is a guide to optimize your site, please follow it and also use a cache plugin – https://forum.tagdiv.com/how-to-make-the-site-faster/ – https://forum.tagdiv.com/cache-plugin-install-and-configure/
Please notice that the CSS working in cascade (Cascading Style Sheet) and the first time take the default code and then your custom css is loaded(also the theme pane settings are custom) and because of this will appear that delay in loading. Usually this delay is more visible when you use Speed Booster plugin which moves the resources to the footer, but fully optimizing your site, this should not be visible. And alternative would be to add your custom colors, fonts directly to your stylesheet file.
Thanks!
Hello cloin1,
Please try to make your own topic with your problem and there you should provide your website URL so I can inspect it closer. Until this, you should try to create your own custom CSS code using the Inspector browser, according to our documentation here -> https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Thanks for your understanding!
I am not sure what is wrong, but when you view my website http://www.alexpoucher.com on a mobile device (so far only been able to test on an iPhone 6S) and you scroll down the page, if you swipe or pull to the left the entire layout starts going towards the left, I can not seem to find the problem causing it in the CSS. It’s a problem because of how sensitive it is, just scrolling down the page on a mobile device and before you know it the layout is halfway off the device to the left, whats the solution here?
OK so I am trying to optimize my website and after checking Pingdom I see this (right now just focusing on the Google part outlined in red)

I am wanting to combine the 2 Google fonts in to 1 request, after checking Googles own documentation I find this solution:

According to Google I can take the 2 requests
http://fonts.googleapis.com/css?family=Open+Sans%3A300italic%2C400italic%2C600italic%2C400%2C600%2C700&ver=4.7
http://fonts.googleapis.com/css?family=Roboto%3A500%2C400italic%2C700%2C900%2C500italic%2C400%2C300&ver=4.7
and do something like this I think (syntax might be wrong):
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=Open Sans|Roboto">
to produce just 1 request, but my question is where do I put that new code to make newspaper only issue the 1 request? Please help me, thank you in advance.
Yes I have read your post. I have just spent the last 2 hours trying everything you have mentioned. When I added the above code to functions.php the site quit working and I had to install the original functions.php to fix it. I have also read all documentation on CloudFlare.
The only query option CloudFlare has is this >

According to Cloudflare to remove everything starting with the ? you should use the Ignore Query String setting, I am currently using this setting and the problem is still there, for posterity I have tried every setting and it still doesn’t fix the issue.

Your above code reads
if( strpos( $src, '?ver=' ) )
but as you see here most of my problems are query strings that are ?resize= and ?oh= and ?ig_cache_key=

so should your code be modified to something like this?
function remove_cssjs_ver( $src ) {
if( strpos( $src, '?ver= ?resize= ?oh= ?ig_cache_key=' ) )
$src = remove_query_arg( 'ver', $src );
return $src;
}
add_filter( 'style_loader_src', 'remove_cssjs_ver', 10, 2 );
add_filter( 'script_loader_src', 'remove_cssjs_ver', 10, 2 );
or maybe something like this so all urls with a ? in it gets fixed?
function remove_cssjs_ver( $src ) {
if( strpos( $src, '?*' ) )
$src = remove_query_arg( 'ver', $src );
return $src;
}
add_filter( 'style_loader_src', 'remove_cssjs_ver', 10, 2 );
add_filter( 'script_loader_src', 'remove_cssjs_ver', 10, 2 );
If you would be willing to message me, I can give you admin access to my cpanel, ftp, cloudflare and website and once you fix it I will send you 85 dollars to your paypal account, please help me.
-
This reply was modified 9 years by
alexpoucher.
-
This reply was modified 9 years by
alexpoucher.
If you have trouble navigating in the theme docs here on the forum to the tutorials, here is link to my thread on optimization which can help you with some cool things for the functions.php file, such as removing query strings, emojis, etc. — easier to start on last couple of pages, frankly, than oldest pages — unless you want to
https://forum.tagdiv.com/topic/tutorial-chriss-custom-optimizations-for-functions-php-etc/
as one example
function remove_cssjs_ver( $src ) {
if( strpos( $src, '?ver=' ) )
$src = remove_query_arg( 'ver', $src );
return $src;
}
add_filter( 'style_loader_src', 'remove_cssjs_ver', 10, 2 );
add_filter( 'script_loader_src', 'remove_cssjs_ver', 10, 2 );
this won’t help probably with anything loaded off your CDN if they insert versioning for “cache busting” … where versioning is intentional to force re-cache when changed.
So, you need to figure out settings for your cdn/caching setup, as well as something like the above for WordPress generated elements.
Again – neither is theme related, but hopefully this will help in some way.
Example: In my site someone searches for the following “battlefield 1”. First that the page of battlefield 1 appears and soon the articles.
Some CSS code to do this, First the page appears and then the articles.
Site: leveltoday.com
Hi,
My post view count isn’t working. I have no custom css embedded. Could you have a look and let me know what might be cause this?
You can hide it using custom css – http://screencast.com/t/hbZ5ihthT
.td-post-source-tags li:first-child {
display: none;
}
Thanks!
Hi,
We will fix the title issue as soon as possible. I think that next week the new version will be ready and we will release it.
You can use this custom css to add a little space there – http://screencast.com/t/3BNYgAjCvrB
.td-g-rec-id-content_bottom {
margin-top: 44px;
}
Thanks!
Hi,
Please try this custom css in Theme Panel > Custom Css – http://screencast.com/t/pWJcpetM3JmR
.block-title .rsswidget {
background-color: transparent !important;
}
Thanks!
Hi,
You can try this custom css in Theme Panel > Custom Css – http://screencast.com/t/BZPou5oDN
@media (min-width: 768px){
.single .td-post-template-8 .td-post-header {
height: 400px;
}
}
Thanks!
Hi,
The buttons are created based on Visual Composer buttons and only those colors are available.
To have a custom color you could use custom css. For example you add the button’s shortcode in your post – http://screencast.com/t/anhIeS86eTkt and then you use this custom css to add your own background and text colors – http://screencast.com/t/kwSPKbjf5Eu
.vc_btn-custom {
background-color: #417096 !important;
color: #29c5f6 !important;
}
Thanks!
Hi,
You can hide it using custom css – http://screencast.com/t/6AGbb55d2a
.single .td-header-wrap {
display: none;
}
Thanks!
Hi,
Please disable all your plugins except Visual Composer, clear all the caches and disable also any css/js minifications and see if it works.
If the issue persist please provide also your site url so we can take a look.
Thanks!
Hi,
The theme was designed to pull also the parent category and you cannot target the parent category and hide it using custom css. You can try to comment or remove this code – http://screencast.com/t/IrIpyGlvVo so the parent category will not appear on post pages.
Thanks!
Hello dimitar,
There is an option for it in Theme panel -> Categories section, like this -> http://screencast.com/t/2RWuPbIxC For each category you can change the category tag color and also, the background color. For more information, please check here -> https://forum.tagdiv.com/how-category-settings-work/
If you are referring to this line -> http://screencast.com/t/jiqGJoO4TStP you should use a bit of CSS code to hide it. Try the code below ->
.td-footer-bottom-full .td-container:before {
background-color:inherit;
}
The code is -> http://screencast.com/t/97fdd0u53
For more Footer settings, please consult the theme panel, like this -> http://screencast.com/t/1qjNIw3zk
Thanks for the message!
Hello Ladiesabroad,
If you want to align your image caption to center, you should use the code below and place it in Theme panel->Custom CSS Area.
The code is ->
.wp-caption-text, .wp-caption-dd {
text-align: center;
}
The result you should see here -> http://screencast.com/t/mBIReoeN
Thanks for the message!
Hello,
I have inspected your page source and I saw that you have some additional customization with custom CSS code, like this -> http://screencast.com/t/celyyw9oQG1V Please keep in mind that the theme should look like this -> http://screencast.com/t/lqGf2GgLV if you are using the header style 1. Please try to revert the theme to the default state, without any customization which can influence the theme functionality. Also, we cannot provide support for your customization. Please keep in mind that the theme works as properly and the logo and banner ad are properly aligned on the header. So, if you are using some untested plugins, try to disable all of them and install only the plugins that come bundled with the theme packet and rule out any conflicting plugins.
Thanks for the message!
Hello chrismorda,
The theme automatically adds the logo and the properly link to the footer. If you want to change this to mobile mode, you should check the Theme panel, like this -> http://screencast.com/t/QPmmbjrjWfdo Also, you should provide your website URL so, I can inspect it closer and also, so I can provide you a proper CSS for this, if will not working as you want.
If is not what you mean, provide more details, give so useful information for a better understanding.
Thanks for the message!
Hi, I have tags for each post. After submitting to Google, These tags are indexed and having ” ARCHIVES” word in Title. I don’t want to display “Archives” word in the tag title when they are indexed. Please suggest any change in CSS or theme settings or word press settings.