Search Results for 'css'

Results from the Forum
Alin [tagDiv]
tagDiv Staff

Hi nusagrunge,

Please make sure you update the theme properly using this guide(all the steps how to update from version 4) – https://forum.tagdiv.com/how-to-update-the-theme-2/ and also update the plugins that come with the theme files from the /plugins folder. Also if you use the child theme, you have to update it as the old files modifications or custom css will not work in the version 6.
Also please provide your site url so we can take a look.

Thanks!

Bogdan B.
tagDiv Staff

Hello Manoj,

You can change the default padding on each block by either making a custom css for it or editing the style.css file. You can target the specific blocks by inspecting them in your browser and identifying the classes used by it: http://screencast.com/t/6OcZrRNKdxQ
Unfortunately there is no global padding value that you can change in one instance and apply it to all of your site.

Thank you

Bogdan B.
tagDiv Staff

Hello Manoj,

You will have to target every block and change the padding on it and also be careful about responsiveness. That’s why i said it was a difficult job to do. You can inspect every block in your browser inspector and modify it: http://screencast.com/t/Ng47nDC79http://screencast.com/t/Ffl6TvXdRvJ. Mind the containers the blocks are placed in. They will also need to be adjusted to your changes. You will practically change the whole site’s CSS because all elements are in relation to one another.
Unfortunately there is no easy way to do this task because the site was not meant to be customized like that.

Thank you.

Alin [tagDiv]
tagDiv Staff

Hi,

Please try this custom css and see if it solves the issue on mobile – http://screencast.com/t/thhTjTDSbKV

@media(max-width: 767px) {
.td-post-template-1 .td-featured-image-rec {
height: auto !important;
}
}

Thanks!

Bogdan B.
tagDiv Staff
View - reply

Hello Eric,

I do not speak french but i hope Google Translate can manage.
You can add this custom CSS to your theme panel: http://screencast.com/t/mdnyNhnE

.td-post-views {
display:none!important;
}

Thank you.

manoj.yadav
Participant
#0

Hello,
i tried to change hover color of social icon using the custom css for each individual icon code that i used
.td-social-icon-wrap_i.td-icon-facebook:hover {
color: #254887 !important;
display:block;
}
.td-social-icon-wrap_i.td-icon-googleplus:hover {
color: #D24233 !important;
display:block;
}
.td-social-icon-wrap_i.td-icon-twitter:hover {
color: #00AFE9 !important;
display:block;
}

but it does not changed any thing.
thespotkick.com

Andrei L.
tagDiv Member

Hi

The theme doesn’t have an option to hide the item’s number from smart lists but you can use custom css in theme panel > custom css. For smart list 2 the css could be like this: http://screencast.com/t/hkhBxgKn

.td-sml2-current-item-nr{
display: none!important;
}

If you’re using another smart list just replace the number 2 with your smart list number.

Let me know how it goes.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi charliezed,

I have checked your child theme css file and I see that it is an older version – http://screencast.com/t/74PXlWYXt So please make sure that you update the child theme, you can find it in the /code folder from theme files that you downloaded from themeforest – https://forum.tagdiv.com/whats-included/
Let me know how it goes!

Thanks!

Andrei L.
tagDiv Member

Hi

To put a border around the thumbs from homepage you can use custom css and target their specific classes. The css must be added in theme panel > custom css: http://screencast.com/t/WFIzbqIp6yfF

.home .td-module-thumb img{
border: 1px solid #3214e0;
}

For images from post content the css could be like this:

.td-post-content img{
border: 1px solid #3214e0;
}

This css add a 1px border around every image from post content, if you want the border only for a specific image must add a css class in post editor like here: http://screencast.com/t/nKmySTvEMc3http://screencast.com/t/5TMgSeeE

Let me know how it goes and provide more details if you still need assistance on this.

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

I guess you refer to the page template. You have to add the code also for page in the same file – http://screencast.com/t/xPlMPtZkm and use the css to add a background for specific page using this class .page-id-xxxhttp://screencast.com/t/ADMdOzxLy2H

Thanks!

Alin [tagDiv]
tagDiv Staff

Hi,

1. This can be caused by Speed Booster plugin(if you use it) which move the css and js at the bottom of the page structure so that the page will load faster, this is why the theme default color appears first then changes, because of the cascading property of css. A solution is to change the color directly into css stylesheet file.
2. You can modify the default css for logo, for example please check this solution – https://forum.tagdiv.com/topic/logo-auto-re-sizing-problem-in-v6-3/#post-60395

Thanks!

orlando
Participant
#0

Hi,

it is available through your plugin tagDiv Speed Booster Version 4.1 bring the following files in question in the footer ??

These files requested:

http://fonts.googleapis.com/css?family=Open+Sans%3A300%2C400%2C600%2C700&ver=4.3.1
http://fonts.googleapis.com/css?family=Roboto+Condensed%3A300italic%2C400italic%2C700italic%2C400%2C300%2C700&ver=4.3.1
http://www.***.**/wp-content/plugins/js_composer/assets/css/js_composer.css?ver=4.7.1.1

This description total:
<link rel=’stylesheet’ id=’google_font_open_sans-css’ href=’http://fonts.googleapis.com/css?family=Open+Sans%3A300%2C400%2C600%2C700&ver=4.3.1&#8242; type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’google_font_roboto_cond-css’ href=’http://fonts.googleapis.com/css?family=Roboto+Condensed%3A300italic%2C400italic%2C700italic%2C400%2C300%2C700&ver=4.3.1&#8242; type=’text/css’ media=’all’ />
<link rel=’stylesheet’ id=’js_composer_front-css’ href=’http://www.***.**/wp-content/plugins/js_composer/assets/css/js_composer.css?ver=4.7.1.1&#8242; type=’text/css’ media=’all’ />

I await your response on this, good job

beikeni
Participant
#0

I’ve been looking all over for this option but in the documentation i couldnt find anything useful and exploring all the theme option i got no results.
Another thing that i’ve been longing to do is to change the color of those little comment counter bubbles.

If the tool to tweak the appearance of these two elements is something obvious that i looked over (as i expect it to be) then awesome. Otherwise please I could also do if you tell me which css classes to tweak in the editor.

Thanks to anyone who gets back to me on this

Alessandro

MinaMYoussef
Participant
#0

When I upload the theme on WordPress, I get this error:

“The package could not be installed. The theme is missing the style.css stylesheet.

Theme install failed.”

Thomas Norden
tagDiv Member

Is it possible to do similar color changes in Magazine? Or do I have to go and tweak the CSS? If so, what do I change in order to get rid of the dark gradient and make the text pop?

manoj.yadav
tagDiv Member

Hello,
i used this css code in advanced custom css
.td-boxed-layout #td-outer-wrap {
margin-left: auto;
margin-right: auto;
width: 1130px;
}

my template width reduced i also tried on container wrap also reduced that and tried some other things also i was able to change the design but when i reduced container width some data of blocks scattered so how can i configure all blocks max and minimum width in advanced custom css. is it possible to configure block template layout using max and minimum width according to td-boxed-layout width customization.

charliezed
tagDiv Member

I downloaded the Newspaper child theme, deactivated plugins, cleared cache. Nothing works. I have tried to make several other changes to the css file, all with NO effect (except the header-height, as mentioned). I have wasted several hours on this now and am completely frustrated. Am about to give up on this theme.

Andrei L.
tagDiv Member

Hi

Assuming that you added the linkedin button according to this tutorial indication: https://forum.tagdiv.com/add-a-new-linkedin-button/ you could modify the css added in theme panel to obtain a different layout.

If this is not what you mean please provide more details and your site url so I can inspect this.

Thanks!

Lucian
tagDiv Staff

Hi TVDinner,

I believe this happens due to cache. I have tested your site on Firefox and here is how it looks on my side: http://screencast.com/t/EbTbTPahu7EF and I get the same result on chrome: http://screencast.com/t/ZVNIobWA so if you don’t get the same result please make sure you empty all caches, browser’s also: https://kb.iu.edu/d/ahic then test it again and try this custom css in theme’s panel custom css sections top make the ad banner and the logo stay on one line: http://screencast.com/t/AFPwGoe2GlsF

.td-header-style-1 .td-header-sp-ads {
width: 510px !important;
}

Thanks for the message!

kameni
tagDiv Member

No i am refering to area where is placed social icons on right and Login/register on left. Here would like to place something like phone number instead of social icons and maybe working time instead of login/register.

But thanks for the links i can manage from here.

I have another questions.

1.When i change some default settings like color or font and refresh the page, first loads default font and then is changed in my chosen one. It is only sechond but can i somehow prevent that?

2. I have bigger logo then suggested dimensions, where can i change this settings, i tried in css to put height 220px but then logo is not sharp any more.

Lucian
tagDiv Staff

Hi,

I have checked your site and found some js error in browser’s console and noticed the search drop-down isn’t working also: http://screencast.com/t/oyDF2RE7 These features use javascript so they could be in conflict with other plugins so please make sure you disable all plugins and disable/empty all caches.

I also noticed you’ve mifiyed js so make sure you also disable all js/css/html compression then test again.

Hope this helps! Let us know how it goes!

Thanks for the message!

Emil G
tagDiv Staff

Hi,

The scroll to top button is located in the header.php file – http://screencast.com/t/8EN0Syga
We use js to add a class and change it’s default display: none attribute. The default css can be found in the style.css file – http://screencast.com/t/eLsk8ja6J

Thank you!

Emil G
tagDiv Staff

Hi,

The theme only comes with a general and a category background option. The posts inherit the global or the category background.
Depending on the post template(style) used, for single posts you could change the background with custom modifications and css, ex: – http://screencast.com/t/4ABmQADzQhttp://screencast.com/t/zYxxC1pCFzMUhttp://pastebin.com/9BWuHH4Mhttp://pastebin.com/HK3FNdD1

Thank you!

Emil G
tagDiv Staff

Hi,

Some images are taller and the container height causes this behavior. Try to add the following css in Theme Panel -> Custom CSS, see if it works for all posts – http://screencast.com/t/cCZ4YKdr5K

.td-post-template-1 .td-featured-image-rec {
height: 280px;
}

Thank you!

Bogdan B.
tagDiv Staff

Hello pritiranjan,

You can use this cutom css to change the tile color:

.td_block_slide .td-slide-meta a, .td_block_slide .td-post-date{
color: red;
}

Or this one for the background color:

.td_block_slide .td-slide-meta a, .td_block_slide .td-post-date{
background-color: red;
}

You can add a bit of transparency to the background color if you want by using this palette from mozilla: https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Colors/Color_picker_tool

Thank you for your message.

Viewing 25 results - 26,676 through 26,700 (of 33,436 total)