- NewsmagtagDiv Composer Tutorial
- NewsmagBlock settings tutorial
- NewsmagLogo & Favicon
- NewsmagFooter templates
- NewsmagUsing other ads
- NewsmagUsing Typekit fonts
Hello,
You will need to provide more details as to what white space are you referring to and provide a link to your website so I can create the css code directly.
Thanks.
Hello,
This color is affected by the theme accent color: http://screencast.com/t/rtCr4JdMv – https://forum.tagdiv.com/theme-colors-introduction/
If you want to only change that particular big grid color, you need to use css like so:
.td_block_big_grid_8.td-grid-style-4 .entry-title{
background-color:red!important
}
Thanks.
The CSS file /data/s293153/dom13768/dom13768/wp-content/themes/Newsmag/style.css disappears periodically.
We checked with our hosting partner, and they’ve isolated the problem to td_compile_less_file() function :-
Do you have a workaround for this this ?
td_compile_less_file() function defined in wp-content/themes/Newsmag/td_less_style.css.php which appears to be used to recompile the main style.css stylesheet from the .less input/source files.
Unfortunately it appears that the function first deletes style.css at which point any failure during the compilation will result in the file missing. From what I can tell the function would be failing as it’s using the proc_open() function which we disable for security reason, but even then it
a) tries to invoke what would appear to be a Windows format executable which wouldn’t work on a Linux server and
b) the specified executable file is not even present at the location where the function expects it.
Not being familiar with the theme it isn’t immediately cleared how the compilation is triggered so I would recommend checking with the theme author/support theme to confirm what specific action causes the re-compilation, and possibly speak with them to see if they can modify the function to remove style.css only after a re-compilation has been attempted and confirmed successful, but otherwise leave it in place.
Hi @nicoblog
First make sure that the server meet the requirements for our theme: https://forum.tagdiv.com/newsmag-requirements-for-newsmag/
In terms of speed we have made a page speed guide and covered the most important aspects that google notifies you of (image optimization, js/css render blocking and more..) and based on which it classifies and grades your site’ regarding speed. You can find it here: https://forum.tagdiv.com/how-to-make-the-site-faster/ Also you may find some useful information here: https://forum.tagdiv.com/topic/website-memory-problem/
Hope this help.
Thanks!
Hi
The css does not apply because you’re targeting the link from block title but there must be targeted the container itself. Try this css in theme panel > custom code > custom css: http://screencast.com/t/VLlF9ImJ76
.td_block_11 .block-title {
margin-left: 0!important;
}
For mobile device you can use it like this: http://screencast.com/t/8pivGh8uyoxB
.td_block_11 .block-title {
margin-left: 0!important;
}
.block-title > span {
padding-left: 10px!important;
}
Let me know hoe it goes and if you need additional information please provide more details so I can get back to you with a more accurate answer.
Thanks!
Hi,
1) The trending now alignment is exactly as it;s supposed to be: http://demo.tagdiv.com/newspaper/
2) You can position the trending now widget with this css:
.td-trending-now-wrapper{
margin-bottom: 20px!important;
}
3) Unfortunately the widget is made to only displays posts, not custom content.
4) You can change the speed of the ticker by editing the theme js file: http://screencast.com/t/DQRFtESH
Note that if you use speedbooster the theme min.js will be used that is a compiled js file and changing values in it will be much more difficult.
Thank you!
Hi
Please make sure that you’re using the latest version of the theme available on themeforest, V2.3.5 and also the version of Visual Composer included in its path: V 4.9
In terms of speed we have made a page speed guide and covered the most important aspects that google notifies you of (image optimization, js/css render blocking and more..) and based on which it classifies and grades your site’ regarding speed. You can find it here: https://forum.tagdiv.com/how-to-make-the-site-faster/ Also you may find some useful information here: https://forum.tagdiv.com/topic/website-memory-problem/
Hope this help.
Thanks!
Hi
The import function won’t work properly from Newspaper to Newsmag because the selectors are different from one theme to another. For example if in Newspaper theme you have a background color set for main menu by importing the style in Newsmag this option won’t work. Some of the options will e recognized bot some will not be because of the difference between the css selectors.
The pages built with Visual Composer will be recognized by Newsmag theme as the shortcodes are the same. It won’t be recognized for example a block 18 because in Newsmag theme this block does not exist, but the commune elements will be recognized fine.
Also you will have to regenerate all thumbnails as Newsmag uses different sizes then Newspaper: https://forum.tagdiv.com/thumbnails-fix-strange-looking-images-on-blocks/
Before making any changes make sure you do a full backup to your current wp-install and the database also: https://codex.wordpress.org/WordPress_Backups This is a security measure, in case something goes wrong you can always get back to the previous version.
I hope this help.
Thanks!
Hi
The theme has been developed to be fast but it may still need configurations on this matters so test your site using google’s page speed insights testing tool(or gtmetrix) and make sure you follow the guide instructions and methods then test your site again.
First of all deactivate all plugins except Visual Composer, clear all caches then test your site page-speed again. In terms of speed we have made a page speed guide and covered the most important aspects that google notifies you of (image optimization, js/css render blocking and more..) and based on which it classifies and grades your site’ regarding speed. You can find it here: https://forum.tagdiv.com/how-to-make-the-site-faster/
If you decide to use the speed booster keep in mind that is an optional plugin and it was designed to work only with tested plugins – http://screencast.com/t/FXXDNtqfz in case you use other plugins it will be automatically disabled, so please check System Status – http://screencast.com/t/XAYYQgfRvEC To make it work with other plugins you will have to alter the code and remove/comment this – http://screencast.com/t/RZLIOPUNdqh Also you may find some useful information here: https://forum.tagdiv.com/topic/website-memory-problem/
Regarding your the mobile theme module from Jetpack plugin that was not teed to work with the theme and if it’s enabled it loads a different theme on mobile devices. For more details about this check this topic: https://forum.tagdiv.com/topic/newsmag-broken-on-mobile/
Thanks!
Hello Dariob,
A solution to add your link to the sub footer is to add a custom link to the sub footer menu, add an extra class – http://screencast.com/t/9W8mme5QH and add this custom CSS in Theme Panel > Custom CSS – http://screencast.com/t/apZe4DLuZ0
.td-footer-link {
pointer-events: none;
cursor: default;
}
Hope this helps and let us know how it goes!
Thanks!
Hi
Try this css code, it should work fine for all paragraphs from the text block from sidebar:
.page-id-250 .td-pb-span4 .td_block_text_with_title p, .page-id-250 .td-pb-span4 .td_block_text_with_title span{
font-size: 15px!important;
}
Let me know how it goes.
Thanks!
Hi Guys,
When I use the page builder and select the no-sidebar option, the content is centered in the middle of the page, running across a column that’s 1068 pixels. Is it possible to have a centered column that is only 696 pixels wide? Is there some custom CSS code that would allow me to do this for pages and posts?
Thanks so much,
Dave
Hello,
Is it possible to change style of views and comments count so that it fit with the subtitle style?
Screenshot: http://prntscr.com/aerswk
In other words I want to move the views and comments counts on the subtitle line, with the same style
Thank you!
I’ve been trying to add a html widget (with an autosize function) inside one of my columns (1/1) on the homepage and I get mixed results. With autosize, the width fills up but the height stays narrow not showing the full chart. If i were to replace the “autosize” and input with actual “widths” and “height” then it wont autosize on the mobile version, being too big too see on your phone.
So the main problem is getting the chart to show up on the mobile version of my website without it being too wide to see, and then also being big enough for those desktop viewers. The only way I can see this working is if I can have it on autosize but somehow find a way to increase the default widget box css height but how?
<!– TradingView Widget BEGIN –>
<script type=”text/javascript” src=”https://d33t3vvu2t2yu5.cloudfront.net/tv.js”></script>
<script type=”text/javascript”>
new TradingView.widget({
“autosize”: true,
“symbol”: “FX:SPX500”,
“interval”: “D”,
“timezone”: “Etc/UTC”,
“theme”: “White”,
“style”: “1”,
“locale”: “en”,
“toolbar_bg”: “#f1f3f6”,
“allow_symbol_change”: true,
“hideideas”: true,
“show_popup_button”: true,
“popup_width”: “1000”,
“popup_height”: “650”,
“no_referral_id”: true
});
</script>
<!– TradingView Widget END –>
Or is there a way to disable the mobile version of the newspaper theme so everyone redirects to the desktop version no matter what?
I found an instruction on css script to use to change the comment form. What I need is to change the comments font left by visitors, the ones you read. Thanks for the help.
For tech heads … by massively hacked … we are
– changing wp-content to /assets/
– changing author slug to profile
– removing /category/ slug
– hacked theme name and dependencies to our local branding
– local loading vs CDN of font awesome and jquery for optimzation/opcache in prep for https/2 update to server
– highly compressed html, js, css
– highly optimized wp-config.php file
– if single/ head removal of js/css only intended for home page
– locked down php disabling in core WP folders for security
– complete removal of all comment code
– complete removal of all XML-RPC code
– complete rewrite of local default search to load from paid Google Search Engine (GSE), including from URL search string and default WP search box
– local loading of author/client avatar, captured from gravatar but hosted locally and cached
– custom “more posts from author” function and placement
– custom breadcrumbs since our CMS is in sub-dir, main static site one level up for actual ‘home’
– custom author box to print as plug into after post meta to appear on AMP version of page including link to author/client site and top four socials (rel=nofollow and target blank)
– custom data fields with ACF5 Pro
– custom hook to our YOURLS install to pull in custom shortcode, drop into post meta, for sharing
– custom local functions, CSS, for social sharing buttons that grab YOURLS shortcode
– (and like etcetera)
so, you think you’re confused ? Welcome to my brain right now ! 🙂
Hi Andrei,
The site is: http://www.glitched.co.uk
I also have two seperate issues:
1) The big grid still has the green tint. There should CSS that avoids this but it seems to have cancelled itself.
2) This has also affected the module hover. The block title disappears when you hover.
It would be fantastic if you could have a look at why this is happening.
Thank you very much.
Good day,
I can’t figure out how to remove the white spacing between these elements. Can you please provide the CSS to do that.
I’m developing a website using Newspaper 6 child theme (hosted on wpEngine): http://glacierjournal.wpengine.com/
I’m trying to set my global fonts (theme panel => theme fonts) and none of the changes I make are actually working. When I go to inspect element I can see that no custom font rule is even being generated. Furthermore, if I try to declare a font in the child-theme styles.css, I’m forced to use !important and even then it only affects some of the matched elements (e.g. some h3’s will change, but not all h3’s).
However, Google Fonts is working perfectly within revolution slider.
What am I missing?
Hi,
You need to adapt the css for responsiveness, yes. You can set the width in % or you can assign a different width for different viewports using @media or the advanced css boxes here: http://screencast.com/t/FIh6a3XY
Thanks.
That was too easy – this way it does not work on mobile. I think, because it doesnt adjust the content to the width of the mobile screen anymore (See: https://www.dropbox.com/s/apgnn1jt1nbelnk/Screenshot_2016-03-11-14-31-38.png?dl=0)
Any ideas? Is it possible to put the width in percentage into the css?
Thank you!
Hello
If you want to adjust it to centre you need some additional customization trough CSS code. For example, below I gave you an example about this -> http://screencast.com/t/RKnda1rXSgac
The code is ->
.td_module_slide{
padding-top:30px;
}
Please provide your website URL so I can inspect it closer and so I will be able to provide a more accurate code.
Thanks.
Hi,
The best way to do it is add all of your post content inside a div element like so: http://screencast.com/t/lPLcAJy7y then use the class assigned to it with css like so:
.mycontent{
width:745px;
margin-left:auto;
margin-right:auto;
}
Result: http://screencast.com/t/fbfbPNIW
Thanks.
Hello,
You can add an image on a row in visual composer like so: http://screencast.com/t/RzYGk3Dhvs
Then you need to assign an extra class to the row so you can target it with css: http://screencast.com/t/tw1jAKzptg4
And then you can apply a top padding to the content:
.myextraclass .wpb_column{
padding-top:60px;
}
result: http://screencast.com/t/dxzbFvOx3mq
Hope this helps.
Thanks.
Hi
Try this css in theme panel > custom code > custom css to change tha background color for mobile menu: http://screencast.com/t/D2ieUCRlBOhj
@media(max-width: 768px){
.td-header-main-menu{
background-color: red;
}
}
Let me know how it goes and if this is not what you mean please provide your site url and more specific details about the part which you want to edit so I can inspect this and get back to you with the proper code.
Thanks!