Search Results for 'css'

Results from the Forum
Catalin
tagDiv Staff

Hello themesic,

Unfortunately, the Visual Composer is not fully tested with the posts but only for pages but if you want to use it when you create some posts you will have to enable this plugin and for posts from the panel, like this -> http://screencast.com/t/tx6AwdS1NfjN Using the Visual Composer for posts you can add what you want on your site but please notice that it is possible to require some adjustments using the CSS code for better results. So, if you are not aware of the steps in this regard, please consider hiring a freelancer/developer to help you because we cannot provide customization services at the moment, sorry!

Thanks for your understanding!

Andrei L.
tagDiv Member

Hi

Try this css in theme panel > custom code > custom css: http://screencast.com/t/K1Fg4tNU32

.td-grid-style-4 .entry-title {
background-color: rgba(10, 1, 0, 0.40);
}

Thanks!

Andrei L.
tagDiv Member

Hi

Try this css in theme panel > custom code > custom css: http://screencast.com/t/vbFllhugfU

.top-bar-style-4 .td-header-sp-top-menu {
float: none;
}
.td_ul_login{
float: right!important;
}

Thanks!

Andrei L.
tagDiv Member

Hi

Yes it is possible, try this css in theme panel > custom code > custom css:

@media(max-width: 768px){
.td-front-end-display-block{
display: none;
}
}

Thanks!

Andrei L.
tagDiv Member

HI

We know about this issue and will be fixed in next theme’s update. Meanwhile try to edit style.css file and add this code here: http://screencast.com/t/FxeKwNH15ICY

.sf-menu ul {
visibility: hidden;
}
.td-js-loaded .sf-menu ul {
visibility: visible;
}

Thanks!

Dafunda.com
Participant
#0

Currently, I Just Added This Script on Functions.php

// DAFUNDA CSS Class Based on Category
function category_id_class($classes) {
global $post;
foreach((get_the_category($post->ID)) as $category)
$classes[] = $category->category_nicename;
return $classes;
}
add_filter(‘post_class’, ‘category_id_class’);
add_filter(‘body_class’, ‘category_id_class’);

My Problem is, I Have multiple Category in One Post. Sometimes, the CSS will be Mixed. My Questions is how to make this functions only work with Primary/Parent Category?

EXAMPLE
https://dafunda.com

using Different color in Each Post based on Category
https://dafunda.com/tekno/
https://dafunda.com/tekno/cara-merawat-baterai-tahan-lama/

The Problem is Here
https://dafunda.com/gokil/
https://dafunda.com/gokil/inilah-petunjuk-toilet-lucu-dan-keren/

miroslavkulich
tagDiv Member

Hi, it also didn´t help. Here si my Custom CSS:


@media
(max-width:767px){
.td_block_13 .td_block_inner:after {
clear: both;
display: table;
content: “”;
line-height: 0;
}}


@media
(max-width:767px){ .td-pb-span4 .td_block_15{ float:none!important; }


@media
(max-width: 767px){
.td-menu-mob-open-menu .td-mobile-nav-wrap {
z-index: 1;
}
}

.td-md-is-firefox {
.td-main-page-wrap {
padding-top:0!important;
}
}

simchris
tagDiv Member

Hm.

Well couple of wrinkles.

1) changing the mx2 to mx9 still tries to load a large thumbnail 511×400

		//build the results / try mx9 vs mx2 8.22.16
		if (!empty($td_query->posts)) {
			foreach ($td_query->posts as $post) {
				$td_module_mx9 = new td_module_mx9($post);
				$buffy .= $td_module_mx9->render();
			}
		}

2) removing the thumbnail from the mx2 module leaves the blank space; so I tried removing the outer div, and then applying a style class override at bottom of style.css to make all text font size 15px; but had no impact.

Still playing with this. Seems like I need to double check the mx2 module not being used in anything else first. Might need to make new module like x2search then revise the CSS for that to remove the thumbnail indent padding before the text loop.

———— EDIT ———–
oh, duh — perhaps I should try module 9 vs mx9 ? LOL.

THis worked (and double duh)

//build the results / try _9 vs mx2 8.22.16
if (!empty($td_query->posts)) {
foreach ($td_query->posts as $post) {
$td_module_9 = new td_module_9($post);
$buffy .= $td_module_9->render();
}
}

  • This reply was modified 10 years by simchris.
  • This reply was modified 10 years by simchris.
  • This reply was modified 10 years by simchris.
nairolf
Participant
#0

Hi guys,
After some weeks with this version I have to say that we lost about more than 20% from our traffic and increase considerable positions in Alexa (I seem to have seen another comment talking about this).
Last week we make a downgrade to 7.2 and seems that things become normal.

*- never use more than 3 plugins (Yoast, VC & speed-booster)
– 0,4 sec. our load time, 99 Insights punctuation (PC & mobile)

So I’m not talking about small .css problems!!!

Andrei L.
tagDiv Member

HI

You have a custom css which add a margin top to one of theme’s containers: http://screencast.com/t/thKtSXLN7a Try to deactivate all plugins except Visual Composer, clear all caches and also remove any custom css from theme panel > custom css > custom css then test the page again. Also make sure that you didn’t added any custom in Design option for row and column.

Let us know how it goes and if the problem persist please send us an email at contact@tagdiv.com with your login credentials and we will inspect this issue as soon as possible, also include a link to this topic.
Thanks!

Andrei L.
tagDiv Member

Hi

Yes it is possible bu you will need to make some changes in theme’s core files to achieve the desired result. Firs you need to edit td_social_icons.php file and add thew new icons in the array which holds all icons: http://screencast.com/t/G29Fof0b
Next you will need a custom css to generate the icon. The theme will automatically generate a new class for any icon added. That class looks like this: td-icon-“id from array”. In my case the class will be: td-icon-custom-icon: http://screencast.com/t/0AKkS8hdYIVhttp://screencast.com/t/hHEyvokBZ

Thanks!

Catalin
tagDiv Staff

Hello pierpaolocorso,

Please try the code below and place it in Theme panel->Mobile Theme->Custom CSS area, like this -> http://screencast.com/t/3jU3j9no8wFP

The code is ->

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

Thanks.

Andrei L.
tagDiv Member

Hi

Try this css in theme panel > custom code > custom css; http://screencast.com/t/hcIWtDF1

.widget .block-title span{
color: red;
background-color: green;
}
.widget .block-title {
border-color: green;
}

Thanks!

Catalin
tagDiv Staff

Hello technotrain,

I assume that you want to change the color of the social icons from the top header, from there -> http://screencast.com/t/MUyNZUzST9T , right? Unfortunately, our theme does not have such an option for it, sorry! Please notice that this is the default theme’s behavior and if you want to change the functionality you will have to do some additional CSS customizations in order to achieve as you can see and this type of requests involve custom work and we cannot provide this, at the moment, sorry! If you are not aware of the steps in this regard, please consider hiring a freelancer/developer to help you or you can try to find some plugins with this functionality and see how these will work for you in this regard.

Thanks for your understanding!

ghostmi
tagDiv Member

I point out that after upgrading my menu was no longer in a single line and I added css custom code in this:

.sf-menu > li > a {
padding: 0 5px 0 5px;
}

aberniz
tagDiv Member

Thanks Bogdan. Can you please give me the css for changing this icon?

All the best,
Angel

Catalin
tagDiv Staff

Hello diablo7,

Please try the code below and place it in Theme panel->Custom CSS area.

The code is ->

.td-post-author-name {
display:none;
}
.single .td-post-author-name{
display:block;
}

Thanks for your understanding!

vaporwavezone
tagDiv Member

@andrei_luca Yes, the CSS I’ve used previously did not work.
I am still attempting to change the color of the “Archives” title on the right sidebar.
Sorry for the confusion on my end.

Thanks.

Catalin
tagDiv Staff

Hello Hack4Life,

The author will need a bit of a css fix as the css got changed a bit in the new update but the author name was not updated for it. So until the next theme version please use this CSS code in the mobile theme’s custom code box:

.td-post-author-name div { display:inline; }

Thank you and sorry for the inconvenience.

Bogdan B.
tagDiv Staff

Hello,

Unfortunately there is a little more to it than a few css rules. If the modification was so simple we would have added in in a heartbeat and avoid posts such as this 🙂 It would have been a hell of a lot easier for us. Unfortunately the coding world is not so simple. There are lots of problems and situations that need to be addressed and code modified if you want to use the theme in rtl with all of it’s features. Every element needs to be adapted to the new direction and that is why we recommend hiring a freelancer to do this for you. We have no simple solution to provide as the modification is very time-consuming and we cannot tackle such tasks.

Thank you for your understanding.

Catalin
tagDiv Staff

Hello ronald,

Please try the code below and place it in Theme panel->Cusotm CSS area.

The code is ->

.td_top_authors .td-author-comments-count {
background-color: red;
}
.td_top_authors .td_mod_wrap:hover .td-author-comments-count {
background-color: green;
}

The result you should see here -> http://screencast.com/t/niTMWbhCOT -> http://screencast.com/t/qt5OOHG9zw

Thanks for your understanding!

Bogdan B.
tagDiv Staff

Hello,
You will not find the image in the media library as it;s not an image at all. It’s an icon font. It is done through css.
Thank you!

Bogdan B.
tagDiv Staff

Hi,

I see now what you mean, they are not images but css and font icons. You could have mentioned this from the start as inspecting the site helps a lot 🙂

Ok, let’s give it a try:

.td-next-prev-wrap .td-ajax-next-page, .td-next-prev-wrap .td-ajax-prev-page{
border-radius: 50%;
padding: 8px 0px 7px 5px;
border-radius: 50%;
height: 40px;
width: 40px;
text-shadow: -2px 0px 2px #333;
box-shadow: 0 0 5px rgb(255, 255, 255);
}
.td-next-prev-wrap .td-ajax-next-page i, .td-next-prev-wrap .td-ajax-prev-page i{
font-size: 3em;
}
.td-next-prev-wrap a{
opacity: 0.9 !important;
}

It could require a bit of adjusting but generally this should come close to your desired results.

I hope this helps.
Thanks.

Bogdan B.
tagDiv Staff

Hello,

The entry-category has a different implementation and it will grab the color of the category from here: http://screencast.com/t/NloQRFff This only works on posts.
Different color tags can be present on posts by selecting different colors for the categories like this posts shows: http://demo.tagdiv.com/newspaper/td-post-seeking-business-cuomo-heads-to-cuba-with-a-new-york-trade-delegation/
If you still want to target it with css and make all of them one color you can use this code:
.entry-category a{
background-color:red!important;
}

You can select a specific pot template so the code only affects style 9 for example:

.single_template_9 .entry-category a{
background-color:red!important;
}

Or you can use the post ID and only target one specific post:

postid-165 .entry-category a{
background-color:red!important;
}

Thank you!

Catalin
tagDiv Staff

Hello urlovod,

Unfortunately, our theme does not have such a simple option that offers you a way to add what you want from the Theme panel. Please notice that in order to achieve as you wish, you will have to do some additional customizations through code that involve having solid knowledge in PHP/HTML/CSS to do that. This is not an easy task and if you are not aware of the steps which are needed to take in this regard, please consider hiring a freelancer/developer to help you because we cannot provide customization services at the moment, sorry!
As a hint, if you want to add some custom fields in your menu, you will have to use some WordPress functions to add and display these, according to this documentation here -> https://codex.wordpress.org/Function_Reference/add_post_meta -> https://developer.wordpress.org/reference/functions/get_post_meta/

Hope this helps!

Thanks for your understanding!

Viewing 25 results - 21,451 through 21,475 (of 33,436 total)