- NewspaperCreate Custom Code with the browser’s Inspector or the Live CSS Box
- NewspaperScroll Animation
- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- NewspaperHow to setup Twitch for Social Counter
- NewspaperModal Popup
- NewspaperFlex Block Settings Guide
- NewspaperAutoptimize Plugin – install and configuration
- NewspaperAdding Multiple Authors to Your Articles
- NewspaperDesign your Post Pages using the Cloud Library Templates
- NewspaperBig Grid Flex Settings
- NewspapertagDiv Composer Tutorial
- NewspaperTheme modules and blocks
- NewspaperThe Mobile Theme
- NewspaperCompare theme files – Winmerge tutorial
- NewspaperUsing Other Ads
- NewspaperBlock settings tutorial
- Using custom fonts
- Using typekit fonts
- NewspaperChild Theme Support
- NewspaperHow to Make the Site Faster
Interesting…I am still getting 7 render blocking CSS resources (after clearing site and browser cache)
https://www.dropbox.com/s/e0ac7vvnaeun5wu/Screenshot%202015-06-24%2020.01.46.png?dl=0
Regards
Azhar
@charly_vk tienes un server response de 1 segundo, es decir anda lento el servidor. Veo que tienes zencache, sin embargo no está activado la expiración para algunos tipos de archivo http://gtmetrix.com/reports/www.chicasfitness.com/w07wTjMa (leverage browser caching) . esto es sencillo si tienes apache solo tendrás que agregar unas líneas al htacces, si tienes nginx lo haces en el nginx.conf. Revisa en google como establecer los tiempos de expiración según tengas apache o nginx,
2.- https://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fwww.chicasfitness.com%2F&tab=desktop
Your page has 2 blocking scrip
Estos los eliminas con el functions.php que subí ayer.
Solo sustituye este funcions.php https://drive.google.com/file/d/0B-VBkiewxpMAM29uUkI5YWpneEU/view?usp=sharing
Para el css puedes usar cualquier plugin que te permita diferir el css, solo excluye el style.css
Saludos
Hi,
This is on our list and it will be added an option in Theme Panel in a future update please check this css solution – https://forum.tagdiv.com/topic/how-to-change-mobile-header-color/#post-54699
Thanks!
Ok, it seems to work but that space between the image and artist? http://traxsourcemusic.com/juliet-sikora-larrys-garage-ep-kitt093/
Can that be removed via css?
Hi,
You will need custom to make this work like on Big Grid, you can try this custom css in Theme Panel > Custom Css and change the block number:
.td_block_11 .td-module-thumb:hover .entry-thumb {
transform: scale3d(1.1, 1.1, 1);
-webkit-transform: scale3d(1.1, 1.1, 1);
-moz-transform: scale3d(1.1, 1.1, 1) rotate(0.02deg);
transition: transform 0.3s ease, opacity 0.3s;
-webkit-transition: -webkit-transform 0.3s ease, opacity 0.3s;
}
You may need more css customizations, I suggest to get someone to help you with this if you don’t have basic css experience, as we cannot provide custom work at this time.
Hope this helps!
Hi,
We have changed the css for list in the new version of the theme and because you have this inline css you have this issue with list – http://screencast.com/t/vlfRvcwm You can try this custom to remove that margin – http://screencast.com/t/hJtvYIyM and also reduce line height for post content to the value from version 4 – http://screencast.com/t/HPdOZpk6T so from Theme Fonts > Post Content set it to – http://screencast.com/t/9TbqUdOtb
.td-post-content li {
margin-left: 0px !important;
}
Hope this helps!
Hi, I have the same problem. CSS does not work.
https://cloud.mail.ru/public/3BSdkeVvVVCW/newspaper_menu.png
http://47oporalo.ru/
Hi,
You can build a timeline template like in the old version, using an existing template from version 6. Create your file, copy the content from a page template, I suggest on of these template as you don’t need latest articles – http://screencast.com/t/5dtHZk71pK then take a look at the old files and see code from the content. Also you need to copy loop-timeline.php from the old version – http://screencast.com/t/Eb17ecPcJcV
Unfortunately you will need custom work, beacuse you will need to create also a css code for this template.
Thanks!
Hi
It’s not possible only with customization, you have to add a line of code here http://screencast.com/t/l2wz09W1T witch contains the link button and the css in the custom css from the Theme Panel. I hope this will help.
Thanks
Hi,
the api documentation is here https://forum.tagdiv.com/the-theme-api/ but we don’t yet have a tutorial for tiny mce.
Put your code inplace of “add the api code inside this function” – this code is a plugin
plugin_url = plugins_url('', __FILE__); // path used for elements like images, css, etc which are available on end user
$this->plugin_path = dirname(__FILE__); // used for internal (server side) files
add_action('td_global_after', array($this, 'hook_td_global_after')); // hook used to add or modify items via Api
}
function hook_td_global_after() {
//add the api code inside this function
}
}
new td_api_plugin();
-
This reply was modified 11 years by
Radu.
Hi,
Please check this topic to change the mobile menu color – https://forum.tagdiv.com/topic/how-to-change-mobile-header-color/#post-54699
Also please provide more details about the above css code that you paste it in Custom Css section. It doesn’t work? As I have check some of your code and it works.
Thanks!
Hi,
This is what the test give you: Your page has 8 blocking script resources and 16 blocking CSS resources. This causes a delay in rendering your page. http://screencast.com/t/mXT6tmcZCF
Please check the System status: http://screencast.com/t/SX1bsfhx
You use a lot of plugins. The speed booster move the js and css at the bottom of the page to Eliminate render-blocking, but not for all plugins. You need to modify the plugin(speed booster) if you want to work with other plugins, but nothing is guaranteed that will work.
Read here: The demo uses the tagDiv speed booster plugin – basically that plugin will make the theme use the compressed javascript file from the theme (instead of the regular one) and it also moves all the stylesheets and javascripts (codes) to the bottom of the page. This may break compatibility with some wordpress plugins (the ones that we recommend when you install the theme are well tested and work perfectly
Hi,
Please try this custom css in Theme Panel > Custom Css to hide post views on your articles: http://screencast.com/t/uNHBsSc0q
.td-post-views {
display: none !important;
}
Thanks!
Hi,
Do you use the latest version of the theme 6.1? There was an issue in version 6 but it was solved in last update. You can check this solution – https://forum.tagdiv.com/topic/after-theme-update-ads-appear-alight-right-side-on-safari/
This css comes from the plugin that you use for comments, please try this custom css in Theme Panel > Custom Css and see if it works – http://screencast.com/t/VL9of1MX8
.fyre .fyre-comment-action-button, .fyre a.fyre-mobile-action-button {
height: 25px !important;
}
Thanks!
Hi,
only via custom CSS. You can find the styles here: http://screencast.com/t/pRV0v2DiiZ but it’s a bit complex to change.
Hi,
1. I have checked your article and did not found inline ad, please make sure you added the code properly, also you can try to increase the paragraph value and see if it appears. Or did you tested this and it doesn’t show up only when you set to appear after 1 paragraph? Please provide more details.
2. This is on our list and we will add an option to change mobile menu color in a future update. You can use custom css in Theme Panel to change the color – http://screencast.com/t/3zErUt27izvK
@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: red !important;
}
}
3. The scroll up button was hidden for mobile devices, please try this custom css to display it – http://screencast.com/t/2ldIqR7y
@media (max-width: 767px) {
.td-scroll-up-visible {
display: block;
}
}
4. You can find the child theme in /code folder from package that you have downloaded from themeforest – http://screencast.com/t/oLV32AuSmeH – https://forum.tagdiv.com/whats-included/
5. Please try this solution – https://forum.tagdiv.com/topic/related-article-box/
6. The theme supports Font Awesome 4 Menus just install the plugin then take the icon code – http://fortawesome.github.io/Font-Awesome/icons/ and paste it in Navigation Label – http://screencast.com/t/TKqYz6oH5 – http://screencast.com/t/oR2LdrWz
Thanks!
Hi !
I have read all the post about that. So : count views is active but masked with css, 7days sorting is active also. But in the widget it’s most read posts of all time and not the 7 last days… (the widget is also configured with 7 days sorting).
If it’s not possible, could we reset all the counters ? 🙂
Thank you very much,
Antoine 🙂
Hi,
You can use this custom css in Theme Panel > Custom Css to hide it – http://screencast.com/t/YAYT2oI3
.td-review-final-star {
display: none;
}
Thanks!
Hi,
Yes, you can move top footer ad there, just edit footer style that you use(I see that you use footer style 1) and move this code – http://screencast.com/t/Wc6PusZWnYg – http://screencast.com/t/mSjQcEeSqUht
And use this custom css in Theme Panel > Custom Css – http://screencast.com/t/3W77txmhiu0h
.td-a-rec-id-footer_top, .td-g-rec-id-footer_top {
margin: 20px auto !important;
}
Thanks!
Hi,
I’m not sure what you are trying to change in this file, as td_css_generator.php created a css code for your when you make some changes in Theme Panel, for example when you change theme accent color it will apply that color on block title background and on links hover color http://screencast.com/t/qZxctkwX – http://screencast.com/t/01irLsLMYY
You can use custom css in Theme Panel to paste your css code if you want to customize a color or make your change directly in style.css file.
Thanks!
Howdy,
Thanks Emil. Unfortunately, neither removing all Custom CSS nor deactivating plug-ins had any effect.
And as I said, the block is displaying correctly on the original Home page (linked above).
Hi,
The logo is ok now, and favicon is still showing like this in the panel http://postimg.org/image/z7hckb0wh/, but its ok.
In custom CSS I want to change this>
.td-post-template-11 .td-related-title .td-cur-simple-item {
background-color: white;
padding: 5px;
}
.td-header-style-9 .td-logo-wrap-full {
min-height: 100px;
line-height: 100px;
}
.td-post-content p, .td-post-content {
text-align: justify;
}
.td-header-style-5 .td-header-sp-recs {
background: white;
}
.td-subcat-filter .td-subcat-list a {
color: black;
}
.td-excerpt {
color: black;
}
How to change color of the mobile menu?
Thanks
It appears that if you have a page/mega menu, and the content has a unordered list, none of the list items show up. It must be some css issue, because the are in the browser source code.
Suggestion: 4.2 WordPress brought us Emoji Support that we probably don’t need.
To get rid of that JS from the head:
remove_action( ‘wp_head’, ‘print_emoji_detection_script’, 7 );
remove_action( ‘wp_print_styles’, ‘print_emoji_styles’ );
Found via:
https://wordpress.org/support/topic/emoji-and-smiley-js-and-css-added-to-head
Oki.
First. (missing files) http://gtmetrix.com/reports/www.movzio.com/XJg9IOf2
You need to disable tag div api plugin or fix them, because its calling https://www.movzio.com/wp-content/plugins/td-api-plugin/css/style.css and this file doesnt exist.
second (light files) https://developers.google.com/speed/pagespeed/insights/?url=https%3A%2F%2Fwww.movzio.com%2F&tab=mobile
You need to MINIFY and COMBINE html, css and js code. I dont like w3 because have too many options, but you can try minify option on w3 :-P. Just exclude style.css
Third (server response)
You are on Nginx and nginx works better whit other cache plugins like WP-FFPC instead of w3, just need to install memcached latest version on your server.
Regards