Search Results for 'css'

Results from the Forum
Catalin
tagDiv Staff

Hello lewinandreilly,

If you want to remove the background image effect, you should use the code below and place it in Theme panel-> Custom CSS Area.

The code is ->

.td-module-thumb a:last-child:before{
display:none!important;
}

The result is here -> https://www.screencast.com/t/AXrI62XYwPIV

Thanks for the message!

Bogdan B.
tagDiv Staff

Hello,
The read more button as well as the links and the header will grab the color of the theme accent color: https://www.screencast.com/t/aAr9IGEY
If you want to change only the read more button, please provide a link to your site pointing at the button so I can provide the proper css for it.
Thank you!

Bogdan B.
tagDiv Staff

Hello,

For this you will need to use the border-radius css property. Here is an example:
add this code in the mobile theme plugin -> custom css box:
.td-module-thumb .entry-thumb{
border-radius:20px!important;
}

Thank you!

Catalin
tagDiv Staff

Hello Pedro,

I guess that you want to remove the widget title, right? If you want this, you should simply use the code below and place it in Theme panel->Custom CSS code.

The code is ->

.wpb_wrapper .widgettitle{
display:none!important;
}

The result is here -> https://www.screencast.com/t/E2qjzftX

Thanks for the message!

Bogdan B.
tagDiv Staff

Hello,
The placeholder is turned on or off for the whole website. There is no setting to turn it on or off for specific elements. You can remove the thumbnail or placeholder image from specific blocks using css. If you need such a code provide a link so I can inspect the block
Thank you!

Catalin
tagDiv Staff

Hello jyoti,

If you want to increase this element, you should use a bit of CSS code and place it in Theme panel->Custom CSS area.

The code is ->

.td-header-top-menu-full{
height:48px;
}
.td-header-sp-top-menu{
line-height: 45px!important;
}
.td-header-sp-top-widget {
line-height: 45px!important;
}

The result is here -> https://www.screencast.com/t/hLm1l8jLDh

Thanks for your understanding!

Catalin
tagDiv Staff

Hello SavvyZen,

Furthermore, investigation, notice that does not exist any easy solution to change the font only for mobile mode, sorry! The theme uses only the default font for the entire website or the font which have been setup from theme panel. You can use the CSS to target the each section where you want to change the font but please notice that is not a simple task and this requires time-consuming and we cannot provide custom modifications at the moment, sorry! If you want to do this, you should do it yourself according to our documentation regarding on how you can create your custom CSS code, like this -> https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/ Also, for more information about media queries, please consult here -> https://www.w3schools.com/cssref/css3_pr_mediaquery.asp

Hope this helps!

Thanks for your understanding!

Simion C.
tagDiv Staff

Hi,

1. You could use a do_shortcode containing an ad box with a custom ad code – https://www.screencast.com/t/NJvjNc5ia and enter it in the single file corresponding to your post template file used (post template style 2 – single_template_2.php) from the theme folder, and insert the code in the post structure – https://www.screencast.com/t/CyBEbovSJ with this result – https://www.screencast.com/t/um83ptD49aUh Then you could set some padding top for the ad – https://www.screencast.com/t/MXlbBnvjN This is the shortcode used (you may use a different custom ad if that one is already in use)

<?php echo do_shortcode ('[td_block_ad_box spot_id="custom_ad_1" tdc_css=""]'); ?>

2. I do not understand exactly what you mean regarding the category page. The structure is the same, a content and the sidebar – https://www.screencast.com/t/0IlE56eALnv both in the theme width https://www.screencast.com/t/U392OBp02Q If it is a background ad it will be displayed in the background of the page.

Thanks

nairolf
tagDiv Member

Hi Simion,
All yours guidance to another links about “remove or change default fonts” are deprecated for 7.7 version.
The td_config.php was changed regards fonts call.

¿So, you are kind to give us a clue about how remove the call to fonts.googleapis.com?
¿Was only moved to includes/wp_booster/td_wp_booster_functions.php?

Through the panel settings is totally unfeasible because will charge all the pages with thousands lines of CSS inline.

¡Best to all!

lienkhuong
Participant
#0

Hi i using plugin post by tag for Realted content (https://wordpress.org/plugins/posts-by-tag/). but css this plugin not good in newspaper theme so please support me edit css as –> http://i.imgur.com/Teulzsr.jpg

link to my site: http://24hworldnews.com/orlando-nightclub-shooting.html

Thanks

Bogdan B.
tagDiv Staff

Hello,

You can increase the overall width of the iframe using this css coide:
.td-classic-facebook iframe{
width:130px!important
}

Add the code in the theme panel-> custom css box.

Thank you!

Catalin
tagDiv Staff

Hello _pages,

1)In your case, you should use a bit of CSS code. Try the code below and place it in Theme panel->Custom CSS area.

The code is ->

.td-page-header{
display:none!important;
}

The result is here -> https://www.screencast.com/t/ieTXODmOn3

For this page, here -> https://www.screencast.com/t/egm9vtjIGBqG, I have noticed that you are using the Pagebuider+latest articles+pagination as a page template and you do not use any VC elements from the body of the page and that’s why you bring that white space. After you achieve best results with our theme, please try to read all our documentation and try to understand every element of it and also, when you can properly use the Visual Composer, like this -> https://forum.tagdiv.com/newsmag-how-to-use-visual-composer/ -> https://forum.tagdiv.com/newsmag-page-templates/

2)If you do not like to have page title, you should change the Page Template, like this -> https://www.screencast.com/t/hwViuGrVvQba

If you need more assistance in this regard, please let us know, provide more details about what you do not understand and we will glad to help you.

Thanks for your understanding!

Catalin
tagDiv Staff

Hello,

As I said you above, your website contains a lot of custom CSS code and most likely, that’s why other custom CSS code will not work. Please notice that we cannot provide support for your additional customizations, sorry! Please notice that we provide support only for a default version of the theme, without any additional customization which can break any parts of the theme.

Thanks for your understanding!

Simion C.
tagDiv Staff

Hi,

You could increase the height of the top menu by increasing the line height – https://www.screencast.com/t/KDAwpk7KUk with a code like this, just enter it in Theme panel->Custom Css

.td-header-sp-top-menu,
.td-header-sp-top-widget {
line-height: 56px;
}

Result – https://www.screencast.com/t/EqvGKqxi
If this does not work for you, it would be helpful if you could provide a link to your site for a better solution. Also here is a tutorial about the browser inspector tool to help you create custom code – https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/ by identifying the elements on the page and their classes.

Thanks

Ground Zero
tagDiv Member

Hi stuartmasson,

I am aware of that CSS code but that’s against the policy of Adsense. The code will only hide the ads and will not stop the ads from rendering.

Hi Taco&co and ing Geek,
As of now, I am using Advanced Ads plugin which gives me the functionality to block ads on specific posts.

The only issue I am facing now is with the mobile header ad.
When I use a Advanced ads shortcode for Google ads, header ad is not displayed on mobile and is giving me an error:
No slot size for availableWidth=0

So, I am wondering is there any piece of code that can help me remove the error like setting the min width of header ad division?

ffarci
Participant
#0

Hi.
I would put a description under the posts title (by default -> for all posts), as in the example below.
https://www.screencast.com/t/1ybdR4393Bx
But I think it is only possible modifying the css. Is it correct? or there is another way to do it? I can’t use the CSS language.
Thanks.

andersr
Participant
#0

Hi team,

Looking for some custom CSS to round the corners of the featured images in the mobile theme.

Would appreciate if you could provide.

Anders

marc1993
Participant
#0

Hi,
how i can insert at the Travel Theme text in the Banner in the head area with CSS.

Demo -> http://urlaubsfreak.de/
Banner -> http://urlaubsfreak.de/wp-content/uploads/2017/03/banner.png

Please help, Thanks

PedroMiguelMoreira
tagDiv Member

Hello,

Thanks for the reply.

I ask you another favor, please: in the funcion “WP Categories”, what is the CSS code that I have to put in order that the title of “Categories” doesn´t appear and in that space it is placed the table of the categories (I mean, the table of the categories goes up and occupy the space that is now with the title “Categories”).

My problem is that if I just put the title without colors, there will be an empty space; so, I want that the title disappears completly and in his place appears the table of the categories.

Thanks again!

Best regards.

aph100
tagDiv Member

i have sorted this, my question is now, it is possible to have css code that removes the image placeholder for individual categories, or is it that it is on or off for the whole site>

Thanks

Snyaper
tagDiv Member

Thank you, i think need to freelance developer CSS or JAVA. If i can solve this problem, will share under this post

simchris
tagDiv Member

Would still be loaded as part of the page in the main style.css – overall size would be similar.

20kb of data inline would still be 20kb of data in the main style.css.

pacoesni
Participant
#0

I noticed that when we modified aspects like Fonts and Colors of the theme, this create an Inline CSS code, increasing the size of the HTML, and forcing browsers to increase it’s render cycles. It’s not possible to stop doing that and change the way the mods are embedded?, I mean-> transporting this Inline CSS generated by Newsmag to the Main CSS.

anamariacosta
Participant
#0

Hello,
After failing to upload the zip file as I use to, I read here to upload through ftp.
Well, it didn’t work the same. Here the result:

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. Delete

What should I do?

ebhelloworld28
tagDiv Member

Hi,

1. I understant that it would not be easy to change, but can you help me to do that?
Actualy height size i have changed to 250px and this is fine but image in to slide still is in old dimensions… how to fit it?

2. This is a clear

3. For example if i change .td-medicine from demo_style.css and I save, it cause any problem in my site? Can you tell me if after that i need to make changes in another file of my site also?

*Sorry for my Englisht… hope u unterstand me!

Thank You

Viewing 25 results - 18,726 through 18,750 (of 33,436 total)