Hi,
Unfortunately if you are referring to the white content background, that cannot be changed from the theme panel. There is no option for it. The contend background can only be changed through custom css.
Thank you!
Hello alphaifel,
I suppose that you are referring to this line between posts that are used in module 18. Please try the code below and place it in Theme panel->Cusotm CSS area.
The code is ->
.td_module_18 .meta-info-container {
padding-bottom: 10px;
border-bottom: 6px dashed #f2f2f2;
text-align: center;
}
The result you should see here -> http://screencast.com/t/Dz6AlcjBIUa
Hope this helps!
If you need further assistance in this regard and if the code not working for you, please provide your website URL so I can inspect it closer and also, so I will be able to provide a more accurate code.
Thanks.
Hi,
Try to switch to the main theme as the child theme has a style.css that has not been updated. The files in the child theme especially style.css need to be replaced on every update as it;s a file that gets modified every time. A child theme is not update proof. Please re-create your child theme with the current version of the files and re-add your modification on the new files.
Thank you!
Hello gvdk,
You have to add your custom CSS code in this area, like this -> http://screencast.com/t/4R6MDtmEE
Thanks.
Hi
We haven’t managed to fix the footer background issue yet but a temporary solution would be the use of this css in theme panel > custom code > custom css: http://screencast.com/t/ZI5wl2guXTrv
.td-footer-container:before{
background-image: url('image-url');
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-repeat: no-repeat;
background-size: auto;
background-position: center bottom;
}
}
Just replace image-url with the full url of the image you want to set as background for footer.
Thanks!
Hello svharishtech,
I have checked your website and I saw the problems with the search icon. Indeed, it is a mini-bug in our theme and we will fix in near future update. Until this, please try to use a bit of CSS code to fix it. Try the code below and place it in Theme panel->Custom CSS area.
The code is ->
@media (max-width: 767px){
.td-main-menu-logo img {
max-width: 70%
}
The result you should see here -> http://screencast.com/t/DltuwgdzDc
Thank you for your message!
Hi,
Please try to disable all plugins except visual composer, clear cache and reset cdn files. A plugin could be the cause of this. Or if you have any custom css code or custom modification to the files, please remove them in order to see if it does not affect the padding. (I see some modification to the module 18 from the css in the theme panel. Please remove the custom css in your panel and check the images again)
Thank you!
Hi
Unfortunately there is not an easy way to change all colors of the site. Our demo use a custom css code for that layout. You can try to change background color and grids colors to black from theme panel. For content part use this css in theme panel > custom code > custom css: http://screencast.com/t/WUsKlw5jH
.td-container{
background-color: black;
}
.td-excerpt, .td-module-excerpt, .meta-info, .td-post-author-name a, .td-post-next-prev-content a, .td-next-prev-wrap i, body, p, .td-comments-title-wrap h4, .page-nav a, .page-nav span{
color: white;
}
You will have to change all colors for modules to white otherwise the post titles won’t be visible. These options are all available in theme panel > theme colors.
I hope this helps.
Thanks!
-
This reply was modified 10 years by
Andrei L..
Hi,
This can be done with custom css but i will need to inspect your site so I can provide the proper code, or if you know a bit of css, you can do it your self. You need to use the browser inspector and get the unique class for every menu item: http://screencast.com/t/jYA58Nat7vA5
Thanks.
Hi
This is the code which generate registration form: http://screencast.com/t/1xZslKaa so you can try to replace it with plugin’s shortcode. However I am not sure how this plugin will work whit our theme as we send the register information trough ajax to the database. Most likely you’ll need to adapt the plugin at theme’s system.
We can’t offer plugin implementation at the moment so if you still need guidance on this or you’re not aware of the steps you need to take in this regard please consider hiring a developer or a freelancer to do this for you.
By default the login widget don’t appear on mobile devices. To achieve that you need some css so please provide your site url as I need to inspect this closer in order to provide the proper code.
Thanks!
Hi,
And if you remove the css will the description be back? Try it out and figure out exactly which part causes it.
Try to see where the description fails. For your php code or the css.
Thank you!
Buna,
Am inspectat site-ul si se pare ca logo-ul primeste un padding-top: http://screencast.com/t/VbRYLfkVtsir
Acesta se poate rescrie cu css astfel:
.td_980_resp .td-grid-wrap{
padding:0!important;
}
Multumesc.
Hi, I updated my theme and the problem with footer background image continue. How Can I solve it? Is it another solution with css?
Thanks!
We are currently using NewsPaper Theme version 6.7 and want to upgrade to NewsPaper Theme version 7.0.1 We followed the steps for updating the theme using the FTP method from this link:
https://forum.tagdiv.com/how-to-update-the-theme-2/
After the upgrade the site breaks. The homepage does only shows our categories in the top left then the header for the site is shown. Seems like there is a CSS issue. Our child theme has only two files (style.css and functions.php). We are not sure why this is happening.
How can i increase the size of this line(the line that separate posts). Do u have any CSS code??
http://i.imgur.com/DUDYhsP.jpg
Hello. Did you mean “custom css” in “Plugins settings > Mobile theme” or in “MISC > Custom code” ?
Hi,
I found a solution to customize the alphabetical sorting and I would like to share it :
in the “td_block_authors”, you have to add this line :
usort($td_authors, create_function(‘$a, $b’, ‘return strnatcasecmp($a->last_name, $b->last_name);’));
here (line 74) :
if (!empty($td_authors)) {
usort($td_authors, create_function(‘$a, $b’, ‘return strnatcasecmp($a->last_name, $b->last_name);’));
foreach ($td_authors as $td_author) {
//echo td_global::$current_author_obj->ID;
//echo $td_author->ID;
//print_r($td_author);
A question though : I added some specific CSS but I have no more description of the author after the update ; as you can see on this page : http://la-rem.eu/les-auteurs-2-2/
could you tell me what I’ve to do ?
Thks for your answer !
custom CSS I already have :
.td_top_authors .item-details{
height:100%!important;
}
.td_top_authors .td_mod_wrap{
padding-top:20px!important;
padding-bottom:20px!important;
}
.td-authors-description p{
margin-bottom: 5px!important;
}
Hello
Please try the code below and place it in Theme panel->Custom CSS Area.
The code is ->
@media (max-width: 767px){
.td-scroll-up {
display: none;
}
}
Thanks.
Hi,
for example the update you just released today with the fix. How can I update it so I don’t loose all custom modifications with full update.
I have 7 version now. Do I have to replace every file from folder patch_7.0_7.0.1 (includes, js, functions.php, style.css) on main site directory, or I need to do a full update?
Thanks!
Buna,
Pozitionarea logo-ului pe header style 3 se poate muta in dreapota sau in stanga forte usor cu un cod css:
pentru stanga:
.header-style-3 .td-logo img{
float:left!important;
}
pentru dreapta:
.header-style-3 .td-logo img{
float:right!important;
}
Codul se poate adauga pur si simplu in theme panel-> custom css.
Referitor la spatiul alb, acesta se aplica din logo-ul introdus. Daca logo-ul are spatiu alb, acesta trebuie redus din imagine direct: exemplu cu un logo negru: http://screencast.com/t/gsj5iIweM
Multumesc.
Hi,
There is no option in the theme panel for it, but you can use a custom css like so:
.td-footer-wrapper .td-social-style-2 .td-icon-font{
font-size:20px!important;
}
youcan add the code in the theme panle->custom css box.
Thank you!
Salut,
1)Fonturle tale nu apar deoarece nu sunt incarcate nicunde. Sunt specificate in style.css, da, dar un font trebuie si incarcat inainte sa renderizeze pe front-end. Incarcarea fonturilor se face cu ‘@font-face’
https://forum.tagdiv.com/font-customization/ – https://forum.tagdiv.com/topic/custom-font-issue/
Tema nu are optiuni pentru a modifica fontul pentru toate elementele deodata. Se folosesc open sans si roboto in starea default iar orice metoda de a schimba toate fonturile automat si nu din theme panel reprezinta customizare si nu este acoperita de suport. Daca nu reusesti sa faci acest lucru, poti sa ceri ajutorul unui freelancer.
2) Scuze, mi-a scapat intrebarea. Te rog urmeaza acest topic pentru implementarea page-leve ads: https://forum.tagdiv.com/topic/page-level-ads-problems/
3) Orice meta name se adauga in head tag in header.php dar fara deoarece este deja specificat: http://screencast.com/t/t9Hrm0TQ – dar nu stiu ce ar trebui sa se intample deoarece nu am testat acest tip de banner. Poate necesita un cod suplimentar pentru a functiona. Nu exista o ducumentatie undeva referitor la acest tip de banner-e?
Poate,ca solutie alternativa gasesti un alt plugin care sa ofere aceleasi rezultate si care functioneaza cu tema.
Multumesc.
Hello cooolvita,
1) I suppose that you want to remove the post title in our modules because it is too bigger. If you want this, you have to use a bit of CSS code to hide it. Please try the code below and place it in Theme panel->Custom CSS area.
The code is ->
.td-module-title {
display:none;
}
The result you should see here -> http://screencast.com/t/PtfBknt1
2)Unfortunately, we do not recommend to change the height of this feature because you can damage the layout of the theme and the responsiveness. Also, if you want to do that, you have to change the height from this -> http://screencast.com/t/WUUxlhFW Please notice that is not as simple task because then you will have needed to some custom CSS code for good results and we cannot provide support for your custom implementation, sorry!
3)Unfortunately, this is the java script animation and you cannot change it very easy. Also, if you want to change it, you will have to check the theme.js file from our theme and try to do that. 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!
Thank you for your understanding!
Hi,
In order to deactivate the social icons on mobile only, you can use this custom css:
@media(max-width:767px){
.td-menu-socials-wrap{
display:none!important;
}}
For your second request, I;m not sure what part of the code you are looking for but here are a few places to look into: http://screencast.com/t/EzTHRH3hAj – http://screencast.com/t/9ew1sza4mg – http://screencast.com/t/VaipG3VEOo3b
Hope this helps.
Thanks.