- 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
- NewsmagtagDiv Composer Tutorial
- TutorialsFrom WPBakery to tagDiv Composer
- NewspapertagDiv Composer Tutorial
- NewspaperTheme modules and blocks
- TutorialsDefault Block Settings Guide
- NewspaperThe Mobile Theme
- NewspaperCompare theme files – Winmerge tutorial
- NewsmagBlock settings tutorial
- NewsmagLogo & Favicon
- NewsmagFooter templates
Hi,
You can change it via CSS
1.
.post .td-sub-title {
font-family: your font;
}
2.
.author-box-wrap .author {
font-family: your font;
}
3.
.widget_recent_entries a {
font-family: your font;
}
Thanks!
Do you use the retina logo from Theme panel? http://screencast.com/t/qYGhGp1P4 that is for phones with retina. If not don’t use try with this CSS, add it in Theme panel -> Custom CSS
@media (max-width: 767px) {
.td-full-logo .td-logo img {
height: 44px;
top: 3px;
width: 38px;
}
}
Thanks!
@mixvice used cloudflare and they will do it for you…
Btw css should not be at the bottom it should be at the top
It’s javascript that should go in the bottom
Hey! Can i ask how you move all js and css to the bottom of the document?
Yes, as noted in my original posts, we’re running Apache.
Nginx requires different syntax. Perhaps somebody else can help with that.
SO this means you need to work with your hosting provider to ensure proper expires headers, caching settings, etc., or ask them what file to edit for your particular hosting setup.
eg.
Nginx virtual host configuration file:
location ~* \.(js|css|png|jpg|jpeg|gif|ico)$ {
expires 1y;
log_not_found off;
}
Minify your css and html, I think it will add at least 6-7 points.
But can I ask how you did remove render-blocking javascript files, because that’s my only problem in pagespeed.
You can minify your css and html via W3 cache. I’d be glad if you could say how you dealt with javascript files.
Hello, I am using a background image, and also the streching option is on. When browsing the site with default android 4 browser, I realized that if you click on the menu icon, you will see the background image for a while before the menu appears.
To avoid this, I thought that I could go to custom css and disable the background for mobiles but didn’t work as it continued to show the background image. However, even if I could have dont, this is a weak solutio, I think. So it would be great if the background didn’t appear instantly after clicking on the menu.
Hi,
You can hide the ALL via CSS, hope will work, use this CSS, add it in Theme panel -> Custom CSS
.block-child-cats li:first-child {
display: none;
}
About the sorting order, now is alphabetical sorted.
Thanks!
Hi,
Add the above CSS in Theme panel -> Custom CSS
Hi,
Can be done with a custom CSS, also we will fix this in the next update.
Until that you can use this:
.post h1,
.post h2,
.post h3,
.post h4,
.post h5 {
font-family: Trebuchet;
}
Add it in Theme panel -> Custom CSS
Hi,
Is like that because you use the tagDiv Speed Booster plugin and this will move the style at the footer. And the first render load the default CSS then your custom CSS(predefined style). You can try to disable the plugin and see if works better.
Also we will try to improve this for the future updates.
Thanks for the message!
Hi,
Add this CSS in Theme panel -> Custom CSS
.td-like-tweet-google {
padding-left: 30px;
}
Thanks for the message!
Can you show a screen cast of where you do this in the CSS please. Thank you
Hi,
add this at the begining of the footer.php file:
<div class="container">
<div class="row">
<div class="span12">
<?php
// show the header ad spot
echo td_global_blocks::get_instance('td_ad_box')->render(array('spot_id' => 'custom_ad_1'));
?>
</div>
</div>
</div>
after this you can use the custom ad 1 spot to show footer ads. The ads may need a little bit of css to be better centered.
Radu O.
Hi,
This setup is not fine for you? Add it in Theme panel -> Custom CSS
@media (min-width: 768px) and (max-width: 1018px) {
.sf-menu > .td-not-mega > a {
font-size: 18px;
}
.sf-menu a.sf-with-ul {
padding-right: 28px;
padding-left: 5px;
}
}
To change the menu from phone to be on ipad to is a little difficult.
Thanks for the message!
Hi, I see that you have managed the issue by using the CSS provided.
Thanks for the message!
Hi,
Just use this CSS, add it in Theme panel -> Custom CSS and set it like you want, now is 0px top and bottom
.td-footer-wrap .td-grid-wrap {
padding-bottom: 0px !important;
padding-top: 0px !important;
}
Thanks!
Hi,
add this to the css section in the panel.
.td_block_inner .entry-date {
display: none;
}
or if you want to disable the date site wide use this from the panel:
http://screencast.com/t/RzfP1Nxsu
-
This reply was modified 12 years by
Radu.
Thanks Christopher, you are absolutely right about not minding this stuff first, but it has turned into an obsession for me. I will try to do what sticky thread says, thanks again.
-
This reply was modified 12 years by
murattopak01.
murattopak01
you should fix everything else FIRST, then worry about the “render blocking” thing last. This is sometimes very hard to fix.
Fact is most sites need “some” elements to load first for page to render. You might visit the sticky forum thread on pagespeed to make sure you have expires heads, caching, fonts, external elements, all sorted first, as the render blocking only counts for a very few points — all the rest count for 20-25 points and easy to fix without using a cloud system.
This is exactly what I’m suffering from. I can’t find any differences between the demo page (demo.divtag) and my website regarding js and css files. But somehow my score is about 70 for mobile whereas they are almost 100. Are they using cloudflare?
-
This reply was modified 12 years by
murattopak01.
Yes
the free version ?
CloudFlare will help…
Hi Chris,
Thank you. The systems I use make sure all of this to match the domain Im setting under. In a way you were correct though. I had forgotten the custom css and once removed fixed the issues.
All the best