Search Results for 'css'

Results from the Forum
Alin [tagDiv]
tagDiv Staff

Hi,

1. Do you want to remove Resume title? Please use this custom css in Theme Panel > Custom Css: http://screencast.com/t/aHABwrBm

.td-review .td-review-summary .block-title {
display: none;
}

2. Please make this change in the module file – http://screencast.com/t/WPw0qIiV9EE

Result: http://screencast.com/t/Uha5Azn7c3http://screencast.com/t/QqYTMGGTM

Thanks!

Andrei L.
tagDiv Member

Hi

Try this custom css in theme panel > custom css:

@media (min-width: 767px){
.td-header-menu-wrap {
display:none;
}
}
@media (min-width: 767px){
.td-container{
border-top: 1px solid #e6e6e6;
}
}

The result should be like here: http://screencast.com/t/qa0kgMLfo

Let me know how it goes.

Thanks!

Andrei L.
tagDiv Member

Hi

Try this custom css in theme panel > custom css:

.td_block_big_grid_4 .td-module-meta-info{
display:none;
}

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

For less use – http://winless.org/ To minify javascript use the following tool – https://closure-compiler.appspot.com/home and also for csshttp://cssminifier.com/
We know about this issue and we will fix it as soon as possible, please add this code – http://screencast.com/t/1ubq37tleuj0

'-- Select an ad spot --' => '',

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

Unfortunately if we cannot inspect this, we don’t know exactly what the ad change. You can try to use browser inspector to find out if the width is changed in one of the theme containers. You can also try to use this custom css in Theme Panel > Custom Css and see if it works:

@media (min-width: 1141px) {
.td-boxed-layout #td-outer-wrap {
width: 1164px !important;
}
}

Thanks!

scardoso
tagDiv Member

I’ve managed to remove the date also with that style of css.

Thanks a lot!

Alin [tagDiv]
tagDiv Staff

Hi Steven,

Glad that it works! Maybe the css doesn’t apply on widows 10, I’m not sure as we tested the theme(and we still use) Windows 8. The zoom effect is disable on IE or Safari because these browsers do not support some effects like this very well and may not look fine. If you want zoom effect also on IE(for your users) please remove this code from style.css file – http://screencast.com/t/2HcnpZSprS8 or remove it only for IE 11 – http://screencast.com/t/Upq5DfQc

Thanks!

ajaffarali
tagDiv Member

Nice- that worked.

Could I also hide author name and date from the grid so only the post title shows? What would be the CSS for that?

okti
tagDiv Member

Hi Lucian,

How do you see that this script is moved to the footer ? When i test the page speed i see many scripts are listed as thosevwhich are making the page slower. Right now i have page speed result equal 90 and YSlow only 73. I believe it can still be improved, also by optimizing and moving scripts and css files.

Shall i use booster plugin or anything else ?

Thank you for some suggestions.

k24
tagDiv Member

I do have it applied but there are two widget headings on the sidebar that the css did not change. See example please.

http://www.screencast.com/t/R7tGWQrf

Edit: Also, these widgets don’t that their own heading color picker.

  • This reply was modified 11 years by k24.
sergenial
tagDiv Member

i found the solution, i just need to put this code into “advanced css” not the normal one…thanks 🙂

sergenial
tagDiv Member

Hi Andrei,

by centering the menu like described above the mobile menu view is broken. Is there a way to center via css and have both, the mobile menu and the desktop menu centered?

desktop view: http://screencast.com/t/anOUbh6W
mobile, responsive view: http://screencast.com/t/anOUbh6W

thanks!

horsezy
tagDiv Member

Hi,

I can do programming myself. Could you recommend the tool and configuration of less compiler to build style.css myself?, and I would appreciate if you recommend the minify tool and configuration to use with your js file, I would like to customize your smart snap feature with my custom ads position.

Thanks

Lucian
tagDiv Staff

Hi,

For the predefined footer section blocks you can use custom css like this: http://screencast.com/t/suycxe31kNe

.td-footer-container .block-title > a, .td-footer-container .block-title > span {
background-color: #882d28;
color: #ffffff;
}

The wp standard widgets title you can also use custom css:

.widget_recent_entries .block-title > a, .widget_recent_entries .block-title > span, .widget_pages .block-title > a, .widget_pages .block-title > span{
background-color: #882d28;
}

Let us know how it goes!

Thanks

Alin [tagDiv]
tagDiv Staff

Hi,

The speed booster plugin is optional that moves the css and js at the end of the page, this removes render blocking and improves the score on pagespeed. But also to have a good score is recommend to use less plugins.
Many plugins do not respect the google pagespeed recommendations of punting javascript at the end of the page and they just try to use jQuery in the middle of the page. This slows the site down and it also enforces the requirement that jQuery has to be in the header instead of the footer how Google recommends(this is the developer explanation).
We will try to improve this in future, but we don’t have a better solution for the moment.

Thanks!

Andrei L.
tagDiv Member

Hi

Try this custom css:

.category .td-category-header .entry-content{
display:none;
}

It should work fine: http://screencast.com/t/KZyVbQhA

Thanks

Andrei L.
tagDiv Member

Hi

You can modify the opacity with custom css to reduce the dark effect.

.td_block_big_grid_4.td-grid-style-5 .td-module-thumb a:last-child:before{
opacity: 0.3;
}

This css works for big grid 4 with style 5, if you want to aply it to another grids or style just change the classes as you need: http://screencast.com/t/gVlLyybS
Let me know how it goes and provide more details if that’s not what you mean.

Thanks!

marturano
tagDiv Member

Hi Emil
sorry but I’ve done what suggested, but it’s always the same. The correct path of custom font is charged with a wrong path while the navigation is made from different page then the home page.
Please also remember the other fonts issue regarding mobile phone menu and NEWS TICKER TITLE (doesn’t change the css directive for .td-trending-now-title)
I’m sending you an email with the login credential

Tks
Roberto

Andrei L.
tagDiv Member

Hi

Try to add !important to your css like this:
.widget.jetpack_subscription_widget {
color: white!important;
}

If this doesn’t do it please provide a link, because I need to inspect this to provide a more accurate answer.

Thanks!

Andrei L.
tagDiv Member

Hi

You can use custom css to apply padding in theme panel > custom css: http://screencast.com/t/LALuG8vyOpVQ

.td_block_5 .entry-title.td-module-title, .td_block_5 .td-module-meta-info {
padding: 10px;
}

You can modify the value as you like.
Let me know if this is not what you mean.

Thanks!

Emil G
tagDiv Staff

Hi,

If you set a custom font and then you make changes to it’s path you have to save the settings in Theme Panel -> Theme Fonts, the theme will generate a new css.

If you use a cache clear it. If the issue is still there try to delete the cache plugin and see if it works.

If this doesn’t help please send an email at contact@tagdiv.com , include a link to this conversation and provide wp-admin access so we can take a look.

Thank you!

Alin [tagDiv]
tagDiv Staff

Hi,

Unfortunately you will need custom work to change the width for post content when you use sidebar, as like you already said it breaks the layout and you will have to customize all other post’s elements. If you want to do this I suggest to hire a professional developer to do this for you as we cannot provide any type of custom work at this time, sorry!

The less files are compiled and the css code is already present in style.css files.

Thanks!

Lucian
tagDiv Staff

Hi 4lt3r,

For the first two fonts: http://screencast.com/t/WoDyYNYe use the following ids in the speed booster plugin: http://screencast.com/t/YWF5cL3FJ4http://screencast.com/t/Vzq0U1sc I’ve tested this and it works so make sure you do this right.

For the second open sans font css I’m not from where is it loaded, it could come from a plugin or if you have set a custom font from theme panel. Make sure you have theme set settings to default and disable all plugins to test this.

Thanks

Alin [tagDiv]
tagDiv Staff

Hi,

Please make sure that you update the theme properly using this guide – https://forum.tagdiv.com/how-to-update-the-theme-2/ as I have checked your site and it appears version 4 – http://screencast.com/t/bHtjEKdLn1i Also update the plugins that come with the theme’s files from the /plugins folder and run the script like it is suggested in the documentation(it will import settings, rename shortcode..). Please note that Newspaper 6 is a new theme so old files customization, custom css will not work anymore so you will have to customize it again, it is not necessarily to update the theme gradually(question 2). Also you will have to re-add the widgets to your sidebars as they will become inactive.

Thanks!

Emil G
tagDiv Staff

Hi,

Yes it does:
– speedbooster moves the css and js at the end of the page, this removes render blocking and improves the score on pagespeed;
– the cache plugin creates a copy of each post/page and delivers it from the memory;
– the cdn makes a copy for each image, css and other heavy resources and delivers them from high speed servers which are geographically closer to the site visitor area. The servers are spread around the world, this improves the page load speed.

Thank you!

Viewing 25 results - 27,301 through 27,325 (of 33,436 total)