Search Results for 'css'

Results from the Forum
nicholasyou
tagDiv Member

No, this is the “Blog” so the Posts Feed page. I need to change the CSS?

srampia
tagDiv Member

There are no options to change the colour of the category tag.
https://www.screencast.com/t/EJJDjmbMcH I wanted to change this black colour to another colour.
Is it possible to do it with the help of CSS code and if then what shall be the CSS code?

Thanks

Vlad S
tagDiv Staff

Hello !

Please try this css code and let us know the result: .tdb_single_content iframe {
float:left;
margin-right: 25px!important;
}

This is how it looks on our side: https://prnt.sc/trs2un

Thank you !

machristensen
Participant
#0

Good afternoon. Is it possible to adjust the spacing with the Title element from the TagDiv Composer so that the spacing is the same between the Title element and the next element as it is for elements that have a built in “Custom Title”? I realize I could use the Title element everywhere instead of using the “Custom Title” field in the other elements, but the Title element puts too much space between it and the item below. I’m guessing it is something to be accomplished via CSS, but I have looked over the CSS and I’m having trouble identifying which code is handling that spacing. Thank you.

Dino
Participant
#0

Trying to install a newspaper theme again and getting that classic response, missing a css sheet or whatever it is.
What am I missing? What is the protocol again ?
thanks

Vlad S
tagDiv Staff

Hello !

Indeed this seems to be an issue. Our developers are taking a look at it and will come with a solution. Please try this quick fix before and let us know if this works: https://pastebin.com/26SHHYWk

the code must be placed in Theme panel – Custom Code- Custom CSS.

Let us know the result.

Thank you !

Pixel Cities
tagDiv Member

Hi !!

I know it’s not an option in the theme at the moment, this I understand.

But surely there is some code to make this happen?

Calin has been dealing with this question, please reply Calin.

I require extra columns to work under only one Menu item/sub-menu ?? ‘Business Directory’

All the other’s are fine in one column.

For the moment with a theme setting it is not possible. However I could give you a CSS code for it
2 columns – http://prntscr.com/n9w5z3
.menu-item-49 > .sub-menu{
-moz-column-count: 2;
-webkit-column-count: 2;
column-count: 2;
width: 20em!important;
}

In the phones field use something like this – http://prntscr.com/nafbws
http://prntscr.com/nafc3t
.menu-item-49 > .sub-menu{
-moz-column-count: 2;
-webkit-column-count: 2;
column-count: 2;
}

Kind Regards

Mark

Vlad S
tagDiv Staff

Hello !

You can adjust that from the CSS tab in tagDiv Composer as you can see in here: https://www.youtube.com/watch?v=fa7GenCHcBU

Thank you !

yourbackupemployee
tagDiv Member

i have attempted to implement this solutions (for posts only) in:

https://ifahamutanzania.com/wp-content/plugins/td-standard-pack/Newspaper/assets/css/td_standard_pack_main.css

i cannot seem to see any changes to links i have made on multiple words, they are still the same color (i changed the html color code to blue – #0000FF)

What am i doing wrong? see screenshot here:

https://drive.google.com/file/d/1unR1HQWBDOHADjYvhDKdKkiDvb56zTpP/view?usp=sharing

Kindly assist with the proper place (path to the right file) to implement and any correction needed

jakubz
tagDiv Member

Okay so please provide me any details (div classes, css code, js/jquery) which makes columns in tagdiv composer sticky.

Calin
tagDiv Staff

Hi,

Try this custom css for menu -> https://i.imgur.com/ClWtPOv.png
.td-newsmag-magazine .td-header-style-1 .sf-menu > li > a:hover, .td-newsmag-magazine .td-header-style-1 .sf-menu > .sfHover > a, .td-newsmag-magazine .td-header-style-1 .sf-menu > .current-menu-item > a, .td-newsmag-magazine .td-header-style-1 .sf-menu > .current-menu-ancestor > a, .td-newsmag-magazine .td-header-style-1 .sf-menu > .current-category-ancestor > a{
background-color: transparent;
color: #59ab24;
}

Hope this will help you!

kouata
Participant
#0

Hi,
I use Newspaper for my blog. Youtube playlist doesn’t work. I use WPBakery page builder. The shortcode is like this [td_block_video_youtube playlist_yt=”F9UBPbsZ2Rs” tdc_css=””].
I just got a dark block whitout videos.
Has anyone ever had this problem before? How can i correct this problem?

Thank you

Pixel Cities
tagDiv Member

Great, thanks Calin.

I shall give it a go.

Also, referring to the sub menu in columns CSS code you kindly provided i.e

For the moment with a theme setting it is not possible. However I could give you a CSS code for it
2 columns – http://prntscr.com/n9w5z3
.menu-item-49 > .sub-menu{
-moz-column-count: 2;
-webkit-column-count: 2;
column-count: 2;
width: 20em!important;
}

In the phones field use something like this – http://prntscr.com/nafbws
http://prntscr.com/nafc3t
.menu-item-49 > .sub-menu{
-moz-column-count: 2;
-webkit-column-count: 2;
column-count: 2;
}

Will this effect all the menu buttons across the site? … or just Business Directory?

Kind Regards
Mark

jakubz
tagDiv Member

btw I can modify code of div .content -> add/change .classes #IDs, modify CSS

Calin
tagDiv Staff

Hi,

Please provide me a link to one of these posts, and I will take a look to see if I can make a custom css that will make the image sticky for you.

Thank you!

julingn
Participant
#0

Hi, I created a new single post template with a sticky sidebar. Within the sidebar I want to display some data from the post e.g. selected categories and some data from custom fields. How can I add this dynamic data (which is different for each single post) in my template?

I saw the raw css and raw html block in the td composer but I couldn’t find a way to select dynamic content.

thanks in advance

jakubz
tagDiv Member

No it won’t help me.

I have plugin which inserts into post content div which looks like this -> https://prnt.sc/tpq06q

Code looks like this:

<div class="content">
<div class="sticky-img"></div>
<div class="text">Lorem ipsum text</div>
</div>

And css:

.content {
width: 100%;
}
.sticky-img {
width: 50%;
height: 100vh;
background-size: cover;
float: left;
}
.text {
width: 50%;
float: left;
}

Due to height of .text div I want to make div .sticky-img just sticky. As i said I tried

.sticky-img {
position: -webkit-sticky;
position: sticky;
top: 0;
}

but I doesn’t work probably because of

#td-outer-wrap {
overflow: hidden;
}

Please help me with this 🙂

Calin
tagDiv Staff

Hi,

If you are referring to menu bar -> https://i.imgur.com/MNP8ECP.png then you can edit it using tagDiv Composer -> https://i.imgur.com/UJcMROO.png set the mobile layout click on mobile row and after that click on mobile menu and check the css tab -> https://i.imgur.com/bbkYAS0.png

Hope this will help you!

Calin
tagDiv Staff

Hi,

Sorry but our themes are not compatible with the RTL direction. please provide some more details about what you want to achieve, maybe I will be able to help you with a custom css.

If you need a full RTL theme, you will have to choose a different theme that can provide this functionality. There are elements that can be fixed, but there are still other elements that will not work properly.
We will be able to provide a refund if you make a request here:https://themeforest.net/refund_requests/new

Thank you!

Calin
tagDiv Staff

Hi,

Most of things that you want to do can be achieve using the settings from theme panel -> https://i.imgur.com/DbjAjL1.png
If you want to have more control over the blockquote, you must use a custom css, for example if you want to change the color -> https://i.imgur.com/NeWMJQ8.png
.td-post-content blockquote p{
color: red;
}

or if you want to change the Blockquote align -> https://i.imgur.com/DgMqKwW.png
.td-post-content blockquote {
text-align: left;
}

This code need to be set in them panel> custom code> custom css.

Hope this will help you!

jakubz
Participant
#0

Can you provide me css code which makes elements sticky? In my posts I have images – they should be sticky. I tried
.sticky-img {
position: -webkit-sticky;
position: sticky;
top: 0;
}

but it doesn’t work probably due to

#td-outer-wrap {
overflow: hidden;
}

Thanks!

1fsij
tagDiv Member

Thank you Calin for the reply.

I already fix it. Just a custom css then block 11.
What i did is 1 put five block 11 then I limit them to post one article. I gave them a class for each even number. Then this class will rearrange the image and text position.

this will render block 11 to text and image, then image text vice versa

  • This reply was modified 6 years by 1fsij.
Calin
tagDiv Staff

Hi ton1985a,

Indeed on Smart List Template 1 is look that the for blockquote is not apply, the only way is to use the above css code and set it in theme panel as per device -> https://i.imgur.com/MwCaqZf.png
I note this problem on our list and our developers will check it.

Thank you!

Viewing 25 results - 7,226 through 7,250 (of 33,436 total)