Search Results for 'css'

Results from the Forum
Catalin
tagDiv Staff

Hello mystudent,

If you want to bring your theme to the black version layout, please notice that is not a simple task and require a lot of additional customization through code that involves custom work. I suggest you to install the Black Version without content and you will bring that layout. As a hint, all the custom CSS code from this version you will find here -> http://screencast.com/t/NPxxvKuuogI You can try to copy/paste this code on your style.css but please notice that it require doing some additional customizations in order to achieve best results. If you are not aware of the steps in this regard, please consider hiring a freelancer/developer to help you because it is not a simple task and we cannot provide customization services at the moment, sorry!

Thanks for your understanding!

Andrei L.
tagDiv Member

Hi

In that case you can’t use a thumb because the image will be cropped and won’t be oicked to it’s ful width size. You will have to sent the full image as parameter for indicated functions and also adjust its style from css. As I’ve mentioned above this is not an easy task because involve dome customzations and special cases in get_image() function.

Thanks!

Andrei L.
tagDiv Member

Hi

Unfortunately the theme does not have a share counter and there is not an easy way of doing this. You could try a plugin with a similar functionality but we din’t made any tests and I can’t say how or if they will work with our theme.

You could use this css to display SHARE on mobiles: http://screencast.com/t/glvG5KZCafNB

@media (max-width: 767px){
.td-post-share-title {
display: inline-block;
}
}

Hope this helps.
Thanks!

Catalin
tagDiv Staff

Hello Jose,

Please notice that your page speed will be decreased because another resource will be added and this thing affects the page speed. Using the Background feature from the Theme panel, keep in mind that some js functions will be applied to stretch your background for a good result and that’s why your speed page will drop. With a CSS it is not a simple task to achieve as you want and also, to bring better results.

Thanks for your understanding!

Andrei L.
tagDiv Member

Hi

1. Make sure that your using V 3.2 of Social Counter, clear all caches then test again.
2. The theme was not designed to hide the sidebar on mobile, however you can achieve that using media queries and css code.
3. The theme was not designed to support rtl style and we can’t offer support for layouts miscommunication caused by this style. You will have to adapt theme’s layout to rtl style by yourself as we’re not available for custom work.

Thanks!

Catalin
tagDiv Staff

Hello Birbo,

In order to remove more from author you can use 2 methods:
The css method:

.td_block_related_posts .td-related-right {
display:none;
}

or you can edit the theme files: comment out or delete this part: http://screencast.com/t/Okmq7lxTDzGd

I hope this helps.

Thank you!

Catalin
tagDiv Staff

Hello shackonline,

All the CSS code of the theme is located in style.css core file. If you want to edit it, you will have to do only from this file, like this -> http://screencast.com/t/otibrJcrDK
If you want to display more levels in our theme and 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!

Bogdan B.
tagDiv Staff

Hi,
There is no setting to activate it on mobile, but you can use this css:
@media (max-width: 767px){
.td-scroll-up {
display: block!important;
}

Thank you!

Bogdan B.
tagDiv Staff

Hello,
Unfortunately altering the theme width is not recommended. Our theme was built with a fixed layout in mind and all elements depend on the fixed width. If you change the theme width, you will have to adapt every theme element for the new size otherwise the layout will break. You can however reduce the padding on the sides with this css:
.td-boxed-layout #td-outer-wrap{
width: 1090px!important;
}

Thanks.

Bogdan B.
tagDiv Staff

Hello,
The block titles style is added by the demo you install .the default demo has these title tags: http://demo.tagdiv.com/newspaper/
If you want another style, you can pick another demo. pick one from the list on the right to see how it displays.
For your second question,
The color of the titles can be selected from here: http://screencast.com/t/m5dnpOFAbC
The category tag and the comments can only be targeted with css as there is no color setting for them. Try this code:
.td-post-category, .td-big-grid-meta .td-post-category, .td-module-comments a{
background-color:red;
}

Thanks.

Bogdan B.
tagDiv Staff

Hi,

Unfortunately I can;t say for sure why this happens as the plugin is not tested. Try the default wp search and see if it picks up your download links. Our live search is the only search option that is theme included. The standard search is the one from WP. If this is an inconvenient, you can disable the live search if you want with a bit of custom css and then only use the WP standard search (pressing the search button)
#td-aj-search{
display:none!important;
}

Thank you!

zingolo
tagDiv Member

Thanks for the reply.

The thing is I have no custom css yet. JUst been using the theme panel settings and visual composer. So what do i do? It’s the black area on the mobile that really annoys me

Catalin
tagDiv Staff

Hello nishitjariwala,

If you want to add an image to your header style, please notice that you will have to use a bit of CSS code to do that. Please try the code below and place it in Theme panel->Cusotm CSS area.

The code is ->

.td-banner-wrap-full{
background-image: url('http://wowslider.com/sliders/demo-5/data/images/saarschleife.jpg');
background-repeat: no-repeat;
background-size: 1164px 130px;;
}

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

Thanks for your message!

Bogdan B.
tagDiv Staff

Hi,

If you want to adapt the code, you have to change the margin based on the viewport. You must check the other 3 versions of the site to see if the thumb positions properly. Those are tablet landscape, tablet portrait and mobile. You can copy the code above in the specific section of the theme panel and adjust the value in the code: http://screencast.com/t/HqL9QkQlkqd

1)You can use the same mothod and change the size from the code here: http://screencast.com/t/ElqNhEf7zFG
And then use thios css:
.td_top_authors img{
max-width:initial!important;
}
.td_top_authors .item-details {
margin-left: 215px!important;
height: 200px!important;
}

2)The social icons use a font icon so increasing the font, weil make them increase in size:
.author-box-wrap .td-author-social .td-icon-font{
font-size:32px!important
}

3)You can use this css: .entry-crumbs, .entry-crumb{
color:red!important
}

4) The crumbs for the author box were not added as links. you can also see this on our demo:http://demo.tagdiv.com/newspaper/author/marius2/
The breadcrumbs for pages, categories or tags are clickable.

5) The author page as the search or category pages, are affected by this option of WP: http://screencast.com/t/10Jifw9KWX6t

Thank you!

Andrei L.
tagDiv Member

Hi

This happens because the css from theme panel applies after the main casa from style.css To avoid that delay try to insert the indicated css directly in style.css: http://screencast.com/t/NI9M0lgYv9

Let me know how it goes.
Thanks!

Jose
Participant
#0

Hello,

I am optimizing my theme, to have good score in google-pagespeed. My web is: https://goo.gl/8jmO1v with PS: 90/95

But whent I add a background in theme panel (this image: https://soyunperro.com/wp-content/uploads/Fondosoyunperroop.jpg with only 8k) the theme the theme loses its optimization and the punctuation in pagespeed falls very, very much. PageSpeed 95/90 to 67/87 !!!!

I want to use this background, but do not want to lose punctuation in pagespeed, or optimization.

Can you give me a solution? ¿Custom CSS, or something similar, that does not affect the performance of my web / pagespeed?

Thanks

http://s33.postimg.org/imskcigvy/fondo.jpg

PD. Now background is off (if u need I activate this, say me)

Bogdan B.
tagDiv Staff

Hi,

Unfortunately the td_config file will not work from the child theme so you will have to make this modification in the main theme. There is no update proof method for customizing the theme files. Not even the child theme is update proof.
As for the second question, you can use css to reduce the size of the image. You can post a link to the block in question and I will provide the code for it.

Thanks.

Andrei L.
tagDiv Member

Hi

We apologize for the late delay but we don’t work on weekends and also we’re sorry for any inconvenioces encountered after update..
The theme is tested and it works fine. Please make sure that you update the theme according with our documentation: https://forum.tagdiv.com/newsmag-how-to-update-the-theme/ also try to deactivate all plugins except Visual Composer, deactivate the child theme if you’re using, clear all caches, purge all cdn files if you’re using then test again. Also if you have any custom code in theme panel > custom code> custom css filed make sure it won’t affect page’s layout.
If with previous version a custom co worked fine this may not be the case with a new version. Theme’s style has been changed a lot and any custom code can create issues or may not work at all.


@alintiniuc
thank you for your tip. Any changes made in theme’s files will be lost during update process because old files are deleted and new ones are uploaded instead.

Thanks!

cuogop
tagDiv Member

Hello Catalin, I found this answer, something @virjik need:

Adding this row on includes/modules/td_module_single.php

<div class="td-print-text">Print this page</div>

and this on style.css

.td-print-button {
display: inline-block;
position: relative;
top: -16px;
padding-right: 15px;
color: #ffffff;
text-transform: uppercase;
font-family: 'Roboto Condensed', sans-serif;
font-weight: bold;
font-size: 13px;
cursor: pointer;
height: 31px;
background-color: steelblue;
}

.td-print-text {
position: relative;
top: 4px;
left: 8px;
}

It works fine for me.
Is possible, with the same, add the “e-mail” button ?
Thanks, Paolo.

Andrei L.
tagDiv Member

Hi

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

.td-search-wrapper {
display: none;
}

Thanks!

Andrei L.
tagDiv Member

Hi

To achieve that you’ll need some custom css as the theme does not have a built-in option. Please provide more specif detail about what you’re trying to dos so I can inspect this closer and maybe I can help.

Thanks!

Catalin
tagDiv Staff

Hello zingolo,

I suppose that you are referring to the appearance of a flash when you enter on your website…firstly is loaded a style and then will appear another style, right? This behaviour appears when you have additional customization through custom CSS code. Please notice that the CSS are working in cascade and the first time will take the code from style.css that is set it by default and then the theme will take the custom code that you have changed from Theme panel and practically this flash is generated by this cause. As a workaround, you have to check your style.css and try to add directly in this file your desired custom code. So, if your problem is still there, please try to revert the theme to the default settings, without any customizations and let us know how it goes. Also, you can try to make a new fresh install from scratch with the latest version of the theme and check the results.
Also, please make sure every time you cleared caches.

Hope this helps!

Thanks.

shackonline
tagDiv Member

Thanks. This might be a silly question but where do I edit the CSS just for a single post? Is it something I do in a them file or within WordPress when editing a post?

Phil

fameymedia
Participant
#0

Hi,

I had uploaded a custom font file (Bebas Neue) and have assigned it the Menu. It appears correct on the front page, however when I go to any other page it defaults to some weird font. I have tried to assign it to other elements such as title, content etc and again – correct on front page, incorrect on any other pages.

I have uploaded the custom font files, custom css etc. It all seems correct.

Can you advise me in simple terms what I need to do to make the fonts universal across all pages? Let’s use the menu font Bebas Neue as an example. Your directions for uploading custom fonts missed out a thousand steps for a newbie, so it took me all day to figure it out – so please keep it step by step and simple and assume I know nothing about coding. Because I don’t.

Thank you,

David

oguerin
tagDiv Member

Hi, I found a way, adding this code to the css code did the trick 😉

.td-header-main-menu {
display:none;
}

However is it possible to still keep the main menu as sticky only, when we scroll down ?

Viewing 25 results - 22,426 through 22,450 (of 33,436 total)