- NewsmagtagDiv Composer Tutorial
- NewsmagBlock settings tutorial
- NewsmagLogo & Favicon
- NewsmagFooter templates
- NewsmagUsing other ads
- NewsmagUsing Typekit fonts
Hi,
as my logo height is big, I would like to increase margin on top of google ad so I can place it in the middle of height.
Can you please tell me what line of code in CSS does that?
Regards,
PWD
Concerning ads: Another idea.
At least in germany we do have to add some notice to ads being such.
Maybe you could offer a css solution to mark ads as ads in the ads options.
Hello,
1. Open function.php and replace this code to be like this:
//big slider – big image
add_image_size(‘art-slidebig-main’, 745, 606, true);
//big slider – small image
add_image_size(‘art-slidebig-small’, 326, 200, true);
http://screencast.com/t/VXIPbVKjIvff
2. Open td_module_slide_big.php located in \includes\app\modules and replace art-wide with art-slidebig-small in 3 places:
http://screencast.com/t/1JMfDchB
3. Add this to style.css
@media (min-width: 1200px) {
.td_block_slide_big .iosSlider-col-3 .item {
height: 606px !important;
}
.td_block_slide_big .iosSlider-col-3 {
height: 606px !important;
}
.td_block_slide_big .iosSlider-col-3 .item .td-slide-item-main {
height: 606px;
}
.td_block_slide_big .iosSlider-col-3 .item .td-slide-item-sec {
height: 200px;
}
}
@media (min-width: 768px) and (max-width: 1018px) {
.td_block_slide_big .iosSlider-col-3 .item .td-slide-item-main {
height: 545px;
}
}
4. Rebuild the thumbnails using steps from here: http://import.tagdiv.com/newspaper/doc/#existing-content
Hi, is there a CSS hook or addition or checkbox we can activate to also have the author name be somewhere at top of a story on post pages, and also on excerpts and such ? … aka the “byline” which is common with ALL newspapers, magazines, etc. ?
This seems like an odd omission since this is one of the most crucial elements of publishing.
Hi, yes; likely removing the “comments count” from the author page via CSS would likely be good. Another would be the option to enter a starting number per author. This would be useful in our case where we are migrating a couple of sites together into one NEW site, and some of the old articles we’re also moving over the comments manually. So, right now on a paltry 40 stories, it wouldn’t be too hard to enter a starting comments value as a field in the author/user info page as another data field. This way, one could extrapolate a per author “starting number” moving forward. So, we have one article with 10 comments, another with 3, another with 2, and another with 1 for one of the authors. Putting in a starting or “padding” number for that single author/user of “16” would totally make this rock and roll for us and be better than “0” 🙂
Hello,
to hide the box for the author with id 1 http://screencast.com/t/upbichKQD
to hide the box for multiple authors: http://screencast.com/t/6T4yVnkHf
@rcraig232 I will add classes to them in the next update. To make it easier to hide the boxes via css. Until then, the method from above will work for you?
I wanted to start a thread for things that everyone notices that can be improved in the next version of the Newspaper theme.
1. Use asynchronous Google adsense ads script to Improve load speed and requests
2. fix mobile version when using an ad in the header
3. minify CSS and Javascripts to improve load speed and requests
4. Add Google+ to the TagDiv Social Counter
I will add to this as I find more things that could be improved. Also please add your own improvements.
Hello,
We will release version 1.3.1 of the theme. It includes a fix for this bug. Until then you can add this to your style.css at the end:
.block-title {
font-family: 'Roboto Condensed', sans-serif;
}
-
This reply was modified 12 years by
Radu.
Hello,
the footer automatically adjusts its height to acomodate it’s content.
if you want to modify it via css:
.td-footer-wrap {
height:1000px;
}
The load time of the Newspaper Theme seems to be very slow compared to other themes. Â I love the theme and will be using it although I need to get the load time down before it can be beneficial else Google will likely not rank well. Â Before Newspaper theme load time was 1.28 seconds and after the theme was changed to Newspaper its at over 3 seconds.
My question is, does anyone have advice on speed improvements as well as consolidation of the 14 or so CSS stylesheets that load each time the page loads (caching plugins aside since Bots will likely not be effected)?
By the way I love the theme, great work!
Right now when I add a photo gallery all the thumbnails are proportionally sized on the post page and thus making the gallery look unprofessional. Is there a way to make it look all uniformed using CSS?
Thanks.