- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- TutorialsFrom WPBakery to tagDiv Composer
- TutorialsDefault Block Settings Guide
- TutorialsHow to use custom fonts
1. Glad you solved the problem, I made some tests myself with anchors but could not reproduce the issue you mentioned.
2. I installed the nature demo, I left the default header style (multi-purpose 2)
– https://www.screencast.com/t/2M7WDslMK3a
Tried other header styles but I cannot reproduce the problem. We could take a look if you can send us an email at contact@tagdiv.com and provide admin login.
3. Fonts may not look the same on all browsers or OS. maybe try to use fonts that look similar across all browsers
– https://websitesetup.org/web-safe-fonts-html-css/
6. Change the font of the columns title in the composer. There is no specific setting for the column title font in the theme panel. Use any size you want and be sure to specify units (pixel or other)
– https://www.screencast.com/t/6NoUdPbOiC
It would have been useful if you could mention the website where the large button is present, so I can see how it is made. On the website you provided there is no such button.
However I tried something similar, like this
– https://www.screencast.com/t/cu0SOvvY
.td-post-sharing-bottom .td-social-facebook,
.td-post-sharing-visible {
display: block;
}
.td-social-facebook .td-social-but-icon{
width: 50%;
text-align: right;
}
.td-social-facebook .td-social-but-text{
width: 50%;
text-align:left;
}
.td-social-facebook i,
.td-social-facebook {
font-size: 20px;
}
You could modify the code if needed, then enter it in Theme panel->Custom CSS code section.
Hello itduck2020,
About what kind of Grey Space between section do you are referring? Please provide your website URL and some useful screenshots so I will be able to provide a more accurate response/code.
You should try using a custom CSS code if you want to change the color line.
.td-newsmag-voice .td-pb-span4 .td_block_template_1 .block-title span:after{
background-color:red;
}
.td-newsmag-voice .td-pb-span12 .td_block_template_1 .block-title span:after{
background-color:red;
}
The result is here -> https://www.screencast.com/t/dOYIfr82WF
Thanks for your understanding!
Hi,
The image captions will be displayed like this
– https://www.screencast.com/t/YFCBZT7b
You could use a bit of CSS to style them to appear in the left corner of the image. Experiment with a code like this, see if it works properly.
– https://www.screencast.com/t/f3vIGtcflu
I changed the color of the caption, but you can change it to a color you want (now it depends on the image, on some images it could not be so visible)
Enter it in Theme panel->Custom CSS
.wp-caption {
position: relative;
}
.wp-caption-text {
position: absolute;
right: 0;
top: 0;
color: #fff!important;
}
Thanks
Sorry for misunderstanding. The color of the text in the ajax menu when hovered/active will be the theme accent color. If you set a custom color for the block title background
– https://www.screencast.com/t/tfMt2Asa
Then the hover color will be that one, the active color will still be the theme accent color.
You could set a color with CSS if you don’t want to change the theme accent color. A code like this should work
– https://www.screencast.com/t/W9c6G9b1O
.td_block_wrap .td-subcat-item a.td-cur-simple-item {
color: yellow!important;
}
Hi it seemed to be an issue with an outdated php file. However in place of text on the “post masonry grid” I am getting the following code displayed below each thumbnail:
/* custom css */ .td_uid_1_5af9a2f05ca50_rand { min-height: 0; } jQuery(window).load(function () { jQuery(‘body’).find(‘#td_uid_1_5af9a2f05ca01 .td-element-style’).each(function (index, element) { jQuery(element).css(‘opacity’, 1); return; }); }); jQuery(window).ready(function () { // We need timeout because the content must be rendered and interpreted on client setTimeout(function () { var $content = jQuery(‘body’).find(‘#tdc-live-iframe’), refWindow = undefined; if ($content.length) { $content = $content.contents(); […]
I have spoken to my host providers and was advised that’s it’s something related to the following:
“It appears that the css code in question is inserted somewhere in the theme section. I haven’t found where exactly it’s located, unfortunately. I suggest that you address this issue to a developer as it’s related to the configuration of the specific theme.”
Hello
I just want to delete breadcrumbs for those pages: Homepage, About and terms
I’ve already tried CSS codes for example:
.page-id-21 .breadcrumbs {
display: none;
}
But it doesn’t work.
Can someone help me to delete breadbrumc for these pages?
regards
I means ajax dropdown menu only, not main menu, or settings in “Theme color” -> “Main menu” also affects on a ajax menu items?
Or, I need customize css for ajax menu items only?
Glad you could solve the issues. That is why we created that guide and ask users to first check it. Most issues are solved by it.
The more author box date and date is connected to these setting
– https://www.screencast.com/t/5o6hlQsX1V3
Disabling the author name and date there will remove form all blocks and grids. If you only want them to be removed for the more article box try a code like this in Theme panel->Custom CSS
.td-content-more-articles-box .td-post-author-name,
.td-content-more-articles-box .td-post-date {
display: none;
}
Hi,
Thank you for your appreciation of the theme, there are many more new features to come in future updates.
So you want to remove the mobile menu icon and search icon. If that is the case, then this could be done with some CSS. Try a code like this
– https://www.screencast.com/t/WPADQpj9
This code can be entered in Theme panel->Custom code->Advanced CSS in the phones section
#td-top-mobile-toggle,
.header-search-wrap {
display: none!important;
}
If this is not what you wanted, some additional details would be helpful.
Thanks
Hi,
Maybe these guides would provide a more detailed explanation for possible causes
– https://www.sitepoint.com/media-queries-width-vs-device-width/
– http://www.javascriptkit.com/dhtmltutors/cssmediaqueries2.shtml
– https://stackoverflow.com/questions/6370690/media-queries-how-to-target-desktop-tablet-and-mobile
Hello
It seems that the style.css is not getting loaded on your site.
Please disable all plugins except the page builder, clear cache and reset cdn files if you use it. Please also check any custom code you might have added to the theme panel or the theme files. If you use a child theme, please switch to the main theme to make sure it does not affect the proper functionality of the theme.
Thank you!
Hi,
So maybe something like this – https://www.screencast.com/t/wAR6Llfw
This is the code used in the example, you can change the colors if you want, then enter it in Theme panel->Custom CSS section
.td_block_big_grid_fl_8.td-grid-style-4 .entry-title {
background-color: rgba(255,255,255, 0.7);
}
.td_block_big_grid_fl_8 .td-big-grid-post .entry-title a {
color: #111;
}
Thanks
Hi,
That could be done with CSS code. If you could provide the website where that sharing button is located, I will see how it is made.
Managed to fix the 404 error…but I am still unable to resolve the conflict between the Bakery Page Builder. I still get the 500 Internal Server Error whenever I clicked on âEdit pageâ. Homepage blocks completely missing. The inner pages do appear but have the following text in the description box:
/* custom css */ .td_uid_1_5af923933cec3_rand { min-height: 0; } jQuery(window).load(function () { jQuery(‘body’).find(‘#td_uid_1_5af923933ce74 .td-element-style’).each(function (index, element) { jQuery(element).css(‘opacity’, 1); return; }); }); jQuery(window).ready(function () { // We need timeout because the content must be rendered and interpreted on client setTimeout(function () { var $content = jQuery(‘body’).find(‘#tdc-live-iframe’), refWindow = undefined; if ($content.length) { $content = $content.contents(); […]
Hello, I have several questions/bugs to solve. Better to ask everything at once. I’m using newspaper 8.7.3 with the demo nature.
1 – When I use an anchor in a post, it causes a shift of the whole page, as if a negative margin-top was applied to the body. The main menu is cut, and a blank space appears in the footer. See there : https://www.screencast.com/t/mZg5LxvxI
2 – I have a hover problem in the menu. Underlined are not at the same level, for the first element it’s slightly lower. See there : https://www.screencast.com/t/9i2cGzrw2X4Q
3 – Some parts of my text are blurry, when I make it strong. See there : https://www.screencast.com/t/TEcN1s3t with the typography ‘Raleway’.
4 – I would like to use the same presentation for the megamenu as the artcreek theme, what part of the css should i add ? I try to find it here but it is hardly readable.
5 – I have a wp_booster and fatal error on one of my post, on mobile exclusively. I use some content created with WP Bakery editor on this post, and it worked well before the update. Is it no more authorized to use WP Bakery editor on post at this time ? See there : https://www.screencast.com/t/OFl9p8IZILP and https://www.screencast.com/t/z0XoRkm5JW
6 – Impossible to increase the font-size of “Big title” above 55px or 54px using the multi-purpose admin theme panel. I have to do that with the tD composer.
Thank you in advance for the support !
In theme panel > custom css, I have this code posted:
@media screen and (min-width: 426px) {
.advert {background: url(http://example.com/wp-content/uploads/advert-1.jpg);
background-repeat: no-repeat;
background-size: 100% 100%;
display: block;
width: 100%;
height: 90px;
}
}
@media screen and (min-width: 375px) and (max-width: 425px) {
.advert {background: url(http://example.com/wp-content/uploads/advert-2.jpg);
background-repeat: no-repeat;
display: block; background-size: 100% 100%;
width: 100%;
height: 90px;
}
}
@media screen and (min-width: 320px) and (max-width: 374px) {
.advert {background: url(http://example.com/wp-content/uploads/advert-3.jpg);
background-repeat: no-repeat;
display: block; background-size: 100% 100%;
width: 100%;
height: 77px;
}
}
Weird thing is, testing it on a 320px iphone, it works for the homepage but not on categories & posts. Same thing for firefox browser on desktop. When I test it with google devtools (adjusting the device sizes) it does show up. What is with the inconsistencies? I don’t have the latest theme update, could that be it? Even some pages on mobile it gives me the wrong image….
I was wondering how to switch the default “header menu” to the “top menu” when on mobile (non-plugin). I see I can add the top menu via CSS to the current header in addition to the hamburger but I’d rather have the top menu in place when the hamburger icon is selected.
Still not working, Please give me step by step tutorial to edit this plugin.
I did according to you but still, there is a problem in CSS.
Here is the screenshot of my tdbooster file.
https://cyberthana.com/wp-content/uploads/2018/05/Capture.png
Hi there, tagDiv boys and girls !
And first of all, I’d like to say that it’s been two years now since my first use of the Newspaper theme, and everything is working like a charm so far.
I think it’s important to recognize the highly qualitative and greatly satisfying job when it exists, and thank the people behind the scene who working hard to reach that level of requirements.
So, thank you. đ
I’m reaching you today for something that looks simple said like that, but actually isn’t (I guess like most requests people are asking) :
– In fact, I’d like my Homepage post block on my homepage to be fully clickable (like the Big Grid Full 1).
It doesn’t matter if the Homepage post block becomes clickable everywhere else on my website, since I can use the css pointer-events trick to bypass it.
I guess it’s “just” an html copy-paste matter, but what to copy and where to past is my question.
– Lastly, how can I make the Big Grid Full blocks go true fullwidth ? I didn’t find any way in hell to do so yet.
Even with the force content stretching function of WPBakery (I know I should use tagDiv composer, but hey, old habits die hard), every blocks are boxed.
By the way, I use the same template (almost) everywhere : td-post-template-8-box. Is there a causality link ?
Well, I think it’s enough for the day.
Thank you very much in advance for your feedback, and thanks again for everything. đ
Testing my site in pingdom tools, it shows the plugin Ultimate Member 2.0 having tons of js and css files not combined. Is there a custom way to do this with this theme? I’ve heard W3 Total Cache combines it but is this supported by theme? Thanks.
ok so I checked and for some reason, my php was set to ea-php70 – After, moving it down to ea-php56 the photo issue was resolved along with a lot of the errors posted above… But 1
In the Requirement Page, you linked me it suggests having php of 52 or greater. But there is a lot of php issues with php70 – So perhaps change that đ
I still have the TagDiv Composer not working and this Footer Issue. This is the only fatal error left after the php change:
Fatal error: Call to undefined function mb_detect_encoding() in /home/cleanthe/public_html/New/wp-content/themes/Newspaper/includes/wp_booster/td_css_res_compiler.php on line 54
Line 52 is:
if ( is_string( $att_value ) && base64_decode( $att_value, true ) && base64_encode( base64_decode( $att_value, true ) ) === $att_value && mb_detect_encoding( base64_decode( $att_value, true ) ) === mb_detect_encoding( $att_value ) ) {
Hi,
on my website I have the following things displaying:
[tdm_block_inline_text description=âUGxlYXNlJTIwaW5zdGFsbCUyMHRoZSUyMENyeXB0b2N1cnJlbmN5JTIwUHJpY2UlMjBUaWNrZXIlMjBXaWRnZXQ=â display_inline=âyesâ content_align_horizontal=âcontent-horiz-centerâ description_color=â#ffffffâ]
[tdm_block_inline_image image=â212âł display_inline=âyesâ image_height=â90âł image_width=â1120âł content_align_horizontal=âcontent-horiz-leftâ]
[tdm_block_inline_text description=âUGxlYXNlJTIwaW5zdGFsbCUyMHRoZSUyMENyeXB0b2N1cnJlbmN5JTIwUHJpY2UlMjBUaWNrZXIlMjBXaWRnZXQ=â display_inline=âyesâ content_align_horizontal=âcontent-horiz-centerâ description_color=â#ffffffâ tdc_css=âeyJhbGwiOnsiZGlzcGxheSI6IiJ9fQ==â]
how can I get rid of this?
Thanks
I put Debug mode to “True” and I am getting a lot of fatal errors with your theme. I would understand if this was me changing a theme on an already overdeveloped, heavy plugin website, but fresh install, nothing but your plugins and error after error after error.
Fatal error: Uncaught Error: Call to undefined function mb_detect_encoding() in
public_html/New/wp-content/themes/Newspaper/includes/wp_booster/td_css_res_compiler.php:54 Stack trace: #0
public_html/New/wp-content/themes/Newspaper/includes/shortcodes/td_block_7.php(60): td_css_res_compiler->load_settings(‘td_block_7::css…’, Array)
public_html/New/wp-content/themes/Newspaper/includes/wp_booster/td_block.php(229): td_block_7->get_custom_css() #2
/public_html/New/wp-content/themes/Newspaper/includes/shortcodes/td_block_7.php(80): td_block->get_block_css() #3
public_html/New/wp-content/themes/Newspaper/parts/footer/td_footer_template_1.php(23): td_block_7->render(Array) #4
/home/username/public_html/New/wp-includes/template.php(688): require_once(‘/home/username/…’) #5 /home/username/public_html/New/wp-content/themes/Newspaper/includes/wp_booster/td_api.php(876): load_template(‘/home/username/…’) #6 /home/username/public_html/New/wp-content/the in /home/username/public_html/New/wp-content/themes/Newspaper/includes/wp_booster/td_css_res_compiler.php on line 54
The code will remove the excerpts, the other module elements will remain in their original position. If you also do not want a read more button, maybe you should consider using a different predefined block there, or experiment with the flex block.
With CSS you could use a code like this maybe, modify it if needed
– https://www.screencast.com/t/4CcfbFeM9F
Use for desktop only (Advanced CSS desktop section) on smaller devices it may not look properly. The read more button will be hidden automatically on smaller devices, by default.
.td_block_12 .td-read-more,
.td_block_22 .td-read-more{
display: none;
}
.td_block_12 .td-module-title {
position: relative;
top: 50px;
}