Hello FarrahGillani,
For more references and discussions in this regard, you can check these topics, here -> https://forum.tagdiv.com/topic/analyticsseo-google-disappeared/ -> https://forum.tagdiv.com/topic/google-analytics-reporting-drop-in-traffic-after-updating-to-6/
Thank you for the message!
Yes, css works as well but we tend not to give coding advice if there is already an option for it in the theme panel.
Thanks.
Hi,
You can use this css to do it:
.td_block_9 .td_module_8{
padding-bottom: 0!important;
margin-bottom: 5px!important;
}
Just add the code in the theme panel->custom css box/
Thanks.
Hi,
You can use this css to change the author name on block 7:
.td_block_7 .td-post-author-name a{
color:red!important;
}
However, this will affect all block 7 elements. If you only want to target a particular block, you need to assign an extra class to the row in visual composer and then add the class at the beggining of the code like so:
.mycustomclass .td_block_7 .td-post-author-name a{
color:red!important;
}
Thank you!
Hello,
How do I Eliminate render-blocking JavaScript and CSS?
I have followed your tutorial but I never get that list on my Dashboard. I have disabled all other plugins but it doesn’t work.
Can you provide a better tutorial or help me somehow as I have bought the theme for the “promised speed”.
Thank you.
Theme has nothing to d with mod_pagespeed.
This is something managed at hosting level, and should be optimized for WordPress in general. Do search online f or how to setup mod_pagespeed to work with WordPress.
Also, see my thread in the docs > tutotorials > DIY > best of forums on site optimization to see my settings.
I don’t recommend using mod_pagespeed for messing with CSS and JS files, as it is more likely to break stuff with WordPress, jquery, plugins, theme, etc.
Very much a trial and error — you need to test the settings for your own site, plugins, hosting, platform, etc., and then see how it works by viewing your page source, testing page speed insights, gtmetricx test, etc.
I need a custom request as well.
I don’t know if I’m allowed to post this here..
Can I get an audit support, for admin area if everything is done correctly. I had already two different freelancer working on the blog and they encountered difficulty working on the theme.
Can someone tell me what this means?
Broken Themes
The following themes are installed but incomplete.
Name Description
Newspaper Template is missing. Standalone themes need to have a index.php template file. Child themes need to have a Template header in the style.css stylesheet.
I hope this will not affect Theme functionality.
Thanks
Yes, I would like to move the Logo and tagline a bit to the left. I don’t know much about codes and don’t want to mess the site.. Can you tell me precisely where in the css area should I place the code.. Nr 1 – 61? Thanks
I tried adding following rules in my .htaccess file. it modifying my images URL in source code. I only want to use PageSpeed Module for js and CSS files in the source code.
<IfModule pagespeed_module>
ModPagespeed on
ModPagespeedEnableFilters collapse_whitespace
ModPagespeedEnableFilters remove_comments
ModPagespeedEnableFilters insert_dns_prefetch
</IfModule>
Kindly help me to use proper rules.
I need to be able to let users request the desktop version of my site if they choose to. My plan was to recompile the less-files included and excluding responsive options for desktop-version of the site. Which files do I need to exclude to not include media-queries etc and forcing a desktop version to CSS?
Hi
This is a very complex tack which require many customizations in order to be achieved. The easiest way would be like this:
– define a special thumb in td_config.php with the desired size: http://screencast.com/t/R0P1shKkG Make sure you regenrate your thumbnails after new thumb is defined.
– edit each files which generate the theme’s modules and change the parameter from get_image function with your custom image size: http://screencast.com/t/3g3l9GdVITNA
– scale your images with css such that to be displayed fine on each module/block.
Note that this is a very complex task which require many customizations in theme’s files and also good coding skills are involved in order to complete it. We can’t offer customization services at the moment so if you still need guidance on this or you’re not aware of the steps you need to take in this regard please consider hiring a developer or a freelancer to do this for you.
Thanks for the message!
Hi,
It is a known fact that google detects hidden content. Unfortunately if you want those changes without css, you will have to add extra conditions in PHP and rewrite the theme code to have it only show elements in certain conditions.
1) You can disable post views from the theme panel but they will not show up anymore in the back-end and also sorting options that depend on the post views will not work anymore.
2) This needs several conditions in php to work. There is no easy solution I can provide.
3) The pulldownj on categories can easily be removed from the code here:
https://forum.tagdiv.com/topic/eliminate-7-days-popular-and-by-review-score-from-dropdown-menu/
4) You can remove the pagination by removing this code: http://screencast.com/t/bpquPfkSaFmy
Not all requests can be done easily from the php files.
Thank you!
Hi Bogdan,
I have gone through the same steps one more time and have made sure that I only delete the part you marked in the screencast, no div tags.
The result (on my end) is the same. There is additional space above the breadcrumbs:
http://www.sverigetips.se/category/dalarna/
Strangely enough this does not happen with the other method that you have described (hiding the pulldown with CSS – which doesn’t work properly with Chrome as the pulldown is visible for a fraction of a second).
Thanks for your help!
Walther
Hi,
you suggest me some change (display:none) in css to hide or delete some functions…
problem is that it seem bad for seo
http://seoshrugged.com/2015/11/30/does-google-crawl-css-displaynone-content/
so I want to know what code or functions to eliminate instead of using diplay:none
in particular
1) hide post views
.td-post-views{display:none!important}
2) hide author of block pages and categories, but I leave it on biggrid 1
.page .td-post-author-name{display:none}.category .td-post-author-name{display:none}.td_block_big_grid_1 .td-post-author-name{display:initial!important}
3) hide pulldown on categories (on right)
.category .td-wrapper-pulldown-filter{display:none}.home
4) hide next/prev on related articles
.td_block_related_posts .td-next-prev-wrap{display:none}
.home tells css to only apply the code to the homepage. If your page is not set as a homepage, then the code will not work. With your code, the css will apply on all pages.
Thanks
Hi
The mobile menu icon appear on your site but its color is white, that’s why is not visible. Try this css in theme panel > custom code > custom css, it shout correct that: http://screencast.com/t/eFn1MW7Lv
#td-top-mobile-toggle i{
padding-left: 4px;
color: black;
}
Thanks!
Hi Phonetic,
You can always add your own CSS to target specific devices. For example, you can add your own custom CSS between the bracketed areas below. Then just copy it into the code section in the theme panel (you don’t have to just use the widths set out in the “Advanced code” section).
Cheers,
John
/* ----------- iPad mini ----------- */
/* Portrait and Landscape */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
and (-webkit-min-device-pixel-ratio: 1) {
ADD CSS YOU WANT TO CHANGE
}
/* Portrait */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
and (orientation: portrait)
and (-webkit-min-device-pixel-ratio: 1) {
ADD CSS YOU WANT TO CHANGE
}
/* Landscape */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
and (orientation: landscape)
and (-webkit-min-device-pixel-ratio: 1) {
ADD CSS YOU WANT TO CHANGE
}
/* ----------- iPad 1 and 2 ----------- */
/* Portrait and Landscape */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
and (-webkit-min-device-pixel-ratio: 1) {
ADD CSS YOU WANT TO CHANGE
}
/* Portrait */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
and (orientation: portrait)
and (-webkit-min-device-pixel-ratio: 1) {
ADD CSS YOU WANT TO CHANGE
}
/* Landscape */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
and (orientation: landscape)
and (-webkit-min-device-pixel-ratio: 1) {
ADD CSS YOU WANT TO CHANGE
}
/* ----------- iPad 3 and 4 ----------- */
/* Portrait and Landscape */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
and (-webkit-min-device-pixel-ratio: 2) {
ADD CSS YOU WANT TO CHANGE
}
/* Portrait */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
and (orientation: portrait)
and (-webkit-min-device-pixel-ratio: 2) {
ADD CSS YOU WANT TO CHANGE
}
/* Landscape */
@media only screen
and (min-device-width: 768px)
and (max-device-width: 1024px)
and (orientation: landscape)
and (-webkit-min-device-pixel-ratio: 2) {
ADD CSS YOU WANT TO CHANGE
}
-
This reply was modified 10 years by
bowman9991.
-
This reply was modified 10 years by
bowman9991.
Hi
Try to replace the above css with this one, it should work fine: http://screencast.com/t/rtfWjgVZY
.td-review-header, .td-review-details, .td-review-final-score{
display: none;
}
.td-review .block-title{
padding: 2px 15px 2px 15px;
font-size: 11px;
border-radius: 3px;
}
.td-rating-bar-wrap div{
background: #4db2ec;
}
.td-review {
border-top: 1px solid #e6e6e6;
border-bottom: 1px solid #e6e6e6;
background-color: #f5f5f5;
width: 100%;
margin-bottom: 20px;
}
.td-review td {
padding: 18px 19px 20px 20px;
}
Thanks!
Hi,
1) Yes, he theme accent color affects more elements than the links themselves.
2) Not ALL links get this color. If a widget comes from wordpress, then it will get the color from wordpres. If the widget comes from a plugin. it will get the plugin style. There is no possible control over ALL widgets and elements.
3) and 4) Unfortunately there is no such option, but you could try a css trick to do it but this depends on the widgets you have on your site. They will also need to be targeted with the code. The post links on a homepage are links themselves. Do you want those as well changed? There are lots of variables to this request. I can provide this code but I will need a link to your website and an example or explanation to what links you want to change. There is no way for me to know how you have your site set-up or what widget you use or will use in the future.
5) We did try to do just that with the theme accent color, so all the links will have the same hover style as the rest of the theme, but this is very difficult to apply to external widgets and custom links.
You can try the css codes above in this topic but it’s a shot in the dark without me knowing what to change.
Thank you for your understanding.
Hi
I use your css tweak on liveCSS editor on chrome, but
*author name
*date
*number of comments
are still there
(note that I do need subject appeared)
site DEV url : https://www.hellouk.org/%E9%A6%96%E9%A0%812016/
could you please help again
thanks
Hi,
If you only need to remove these from the homepage and just on a block 16, you can use css to hide them like so:
.home .td_block_16 .td-module-meta-info{
display:none!important
}
Thanks.
Dear Catalin,
Adjusting HTML and CSS is easy, but the problem for me is php, that is why i would be very gratefull if you would be so kind and provide me with accurate code. Or just the line that needs to be added i will add myself.
Best regards,
Hi Bogdan,
1) yes, I read in the previous posts that all the links are affected by the theme accent color. That goes for the hover effect. That’s kind of fine, although as you very well pointed out it becomes useless in many cases as it affects other elements. I assumed a theme would handle control over the link / hover color to the user.
2) Actually, not all hover links are affected by theme accent color. I have a WP Recent Posts element where the hover shows a different color from the theme accent color.
3) What I asked was where could I control the global all over the installation color of links, like here, in the theme from which I am trying to migrate:

4) Even if there isn’t a way to establish these global definitions through the interface, I am sure it’s possible to make it editing the CSS file…?
5) Overall I believe it’s vital to offer the user a consistent experience, where all the links look the same in terms of color. That’s what I am trying to achieve, just as I have in all my websites.
-
This reply was modified 10 years by
Torgut. Reason: Tuning up image link
Are there any options to edit the default display for mobile devices? More specifically I want to be able to show the default tablet view for phones also AND be able to specify exactly how the site is being displayed on different devices.
The default smart phone view is completely useless on a phablet. I will be an absolute horror to manually edit / change all the CSS manually. I’m hoping there is a quick solution or a master variable in the css i can change without too much work.
Hello AilyRoot,
Please try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.vc_tta-panels-container .td_block_9 .td_module_8 {
padding-bottom: 0;
margin-bottom: 0;
}
.vc_tta-panels-container .td_block_9 .td_module_wrap {
padding-bottom: 0!important;
}
.vc_tta-panels-container .td_block_9 .td-module-meta-info{
display:none;
}
The result -> http://screencast.com/t/E8zWWtxOa8
Thank you for the message!