Hello, team!
1. What plugin can you recomend to create a child theme?
As i understand now you provide a possibility to collext own ahild theme, but then I could not understad how to start to do that.
2. Aftrer updat the them via ftp as I undesrats now I has to import all theam settings as well as custom css?
Hi all,
I would like to modify the way that category tags are looking. Could you be so kind and help me with the css code to modify them something like that (or close to): https://imgur.com/Z7YI3qW
At the moment they look like this: https://imgur.com/a/AEUrXK7
Hi,
This is something that you addressed in a previous query on the forum, but I’m struggling to determine where to place the code you recommended at this link.
I’ve inserted the code from my htaccess file below, could you show me exactly where to place the following?
<IfModule mod_headers.c>
Header add Access-Control-Allow-Origin “http://skin.cdn.com”
</IfModule>
———————-
#Expires headers configuration added by BREEZE WP CACHE plugin
<IfModule mod_expires.c>
ExpiresActive On
ExpiresDefault A2592000
ExpiresByType application/javascript “access plus 7 days”
ExpiresByType text/javascript “access plus 7 days”
ExpiresByType text/css “access plus 7 days”
ExpiresByType image/jpeg “access plus 7 days”
ExpiresByType image/png “access plus 7 days”
ExpiresByType image/gif “access plus 7 days”
ExpiresByType image/ico “access plus 7 days”
ExpiresByType image/x-icon “access plus 7 days”
ExpiresByType image/svg+xml “access plus 7 days”
ExpiresByType image/bmp “access plus 7 days”
</IfModule>
#End of expires headers configuration
# Begin GzipofBreezeWPCache
<IfModule mod_deflate.c>
AddType x-font/woff .woff
AddOutputFilterByType DEFLATE image/svg+xml
AddOutputFilterByType DEFLATE text/plain
AddOutputFilterByType DEFLATE text/html
AddOutputFilterByType DEFLATE text/xml
AddOutputFilterByType DEFLATE text/css
AddOutputFilterByType DEFLATE text/javascript
AddOutputFilterByType DEFLATE application/xml
AddOutputFilterByType DEFLATE application/xhtml+xml
AddOutputFilterByType DEFLATE application/rss+xml
AddOutputFilterByType DEFLATE application/javascript
AddOutputFilterByType DEFLATE application/x-javascript
AddOutputFilterByType DEFLATE application/x-font-ttf
AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
AddOutputFilterByType DEFLATE font/opentype font/ttf font/eot font/otf
</IfModule>
# End GzipofBreezeWPCache
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Hy,
i need a someelp please.
How i add a Comma after every Tag?
I’ve tried by myself with this CSS Customisation, it works well but if i try to copy&paste the Comma won’t get copied if i mark all Tags.
.td-tags a:after{
content: ",";
}
I need it, because i soemtimes get similar Posts and its just an easement in my workflow.
Is it possible?
Regards,
Stefan 🙂
I am sorry that this solution will not work. In an earlier query here I was told that Newsman theme can not display Vidoes on the Home Page displays but only on Single Posts. because of that I can not use td-Composer any more. I still use the theme but my front page is created through another plugin Content View. Hence, I would like to create this Widget Are Header within the Theme options and not via td-composer which forces me to put the short code in a Page (the other plugin Content View is already using that Page to create front page display).
Is there a CSS code possible by which this Widget Header can be create above the Posts area. Content View only uses the Posts display area. All other areas I am managing via the Theme only.
Yes. Put the code below this code inside the functions.php for the child theme.
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles', 1001);
function theme_enqueue_styles() {
wp_enqueue_style('td-theme', get_template_directory_uri() . '/style.css', '', TD_THEME_VERSION, 'all' );
wp_enqueue_style('td-theme-child', get_stylesheet_directory_uri() . '/style.css', array('td-theme'), TD_THEME_VERSION . 'c', 'all' );}
(I don’t work here).
Hi,
So you want to increase the space between the lines of a bullet list, I could give you a code for that. Something like this
– https://www.screencast.com/t/Xl5R9wG5GHwt
Adjust the value as you want, the code can be entered in Theme panel->Custom CSS
.td-post-content ul li,
.td-page-content ul li {
margin-bottom: 30px;
}
It will apply to lists in the page content (pages built with the default WordPress editor) and post content.
Thanks
Unfortunately a child theme is not update proof as well. There is no update proof way of altering the theme files. The css method is the only update proof one as you can place the css code in the theme panel and it will not get removed.
As an alternative you can use jquery the remove the code like so:
jQuery(document).ready(function(){
jQuery(".td-related-right").remove();
});
https://www.screencast.com/t/dnVIbhAKm
Thank you!
Hello,
If you want to have a background color for the sidebars please note that it will not work with a sticky sidebar as the sticky part has no padding.
Try this code in the theme panel-> custom css box:
.td-pb-span4.td-main-sidebar, .td-ss-main-sidebar{
background-color:lightgrey!important;
}
Thank you!
Hi,
Here is talking about a background-color for caption section which can be changed from the custom CSS code. Try to use the code below and place it in Theme panel -> Custom CSS Area.
The code is ->
.tp-caption{
background-color:transparent!important;
}
The result is here -> https://www.screencast.com/t/eeb3kwTrrChN
Thanks for your understanding!
Hi,
You can enter CSS in the Theme panel->Custom code sections. Create it with the browser inspector and then enter it there
– https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/
Thanks
Dear, the code works great. Can I use the same code to change the page hyperlinks also? Right now I am using seperate CSS code to change the page hyperlinks
-
This reply was modified 8 years by
great1212.
Is it possible to create a Header-Area between the Header and The Posts where one could use Widgets for Gallerries, Sliders or any other Widget.
Any CSS code will be welcome if the option is not there in the Theme.
Yeah, when i enter the code in this file, nothing works .. when i enter the code in live css editor(chrome), working well …
But i dont have any changes when i enter the code in the theme stylesheet ..
Please give me a safe way to send you credentials to acess the css file.
-
This reply was modified 8 years by
sergio-romualdo.
Hi,
I have had to add the following to the Theme Custom CSS area…
.td-page-content p {
margin-bottom: 0;
}
I have done this so as to override a margin-bottom setting of 26px that is being set in the Theme Style.CSS file (see the following extract from it).
.td-page-content p,
.td-post-content p,
.wpb_text_column p,
.td_block_text_with_title p,
.woocommerce #tab-description p,
.mce-content-body p,
.td-page-content li,
.td-post-content li,
.wpb_text_column li,
.td_block_text_with_title li,
.woocommerce #tab-description li,
.mce-content-body li {
font-size: 15px;
line-height: 26px;
}
.td-page-content p,
.td-post-content p,
.wpb_text_column p,
.td_block_text_with_title p,
.woocommerce #tab-description p,
.mce-content-body p {
margin-bottom: 26px;
}
My question is what is the reason for having it set as I cannot see a reason for it. With it set it makes the Drop-Down Filters that I have configured in the WP-EventON plugin display incorrectly.
Please let me know the purpose of the margin setting so that I can access it as I cannot see any detrimental effect so far.
Regards
Fergus Walsh
The Irish Place
I have created a separate sidebar for Single Posts. Can you please give me the CSS code to give a background color to this sidebar only. Not to the default sidebar of the Home Page.
Hi,
I am using the craft demo on my site. And I have one question. On that demo there are those yellow and green elements (the comments counter, the read more box…) Is there a option to change those colours into different Colours? Or is there an option to use those design elements (via css code?) and use it on another demo like the coffee blog?
I guess those yellow and green elements are some css codes somewhere in the theme, arent they?
Hello LenFI,
1)If you want to remove the ‘Tag:’ word you should edit the tag.php core file and remove from there the word, like this -> https://www.screencast.com/t/5VqRmVeAtcHm
2)You should use such a custom CSS code if you want to make this change. Provide your website URL and some useful screenshots with your desired changes.
Thanks for the message!
I would like to change Catogory heading (block title) CSS. Where to do it?
Hi,
Something is not functioning correctly there. There seems to be some extra margins loaded, which override the 0 value set by the theme
– https://www.screencast.com/t/50tBWkB9cVaM
Without those margins there would be no issue
– https://www.screencast.com/t/fDVAxVVWO4D9
I can give you a code to make sure the theme code applies, enter it in the theme panel->Custom CSS
– https://www.screencast.com/t/oPazbZAd04g
@media (max-width: 767px) {
.td-pb-row, .td-block-row {
margin-left: 0!important;
margin-right: 0!important;
}}
You could try and identify what the cause is. Deactivate as a first step all plugins as a quick test, then check if the problem is solved.
Thanks
Thanks for the answer Catalin.
Another two questions on Tag pages.
Since the theme update today the Tag tag is shown on the Tag Archive page: https://footballinside.net/tag/bournemouth/
As you can at the top it displays: Tag: Bournemouth..
How do I get rid of the ‘Tag:‘ part? I have been looking in the code, but I can’t seem to locate the area.
I have tried hiding it with CSS, but that makes the complete title go away…
Question 2:
Is it possible to hide the Tag description on that page? I want to use the description for SEO purposes, but I don’t want to use too much text if the text is shown on the page.
I have tried to hide it with CSS using ‘entry-content’ as a parameter. However, the text still shows…
Thanks again for the support.
Hi there,
I am using header style 10.
I would like the color behind my logo and the main menu to be #222222.
I have inserted the following css in the custom code section, but it is not adjusting the color of the sticky menu which is still black. What code do I need to ensure that is #222222 too?
.td-logo {
background-color: #222222;
}
.td-main-logo {
background-color: #222222;
}
.td-header-sp-logo {
background-color: #222222;
}
Also, on my homepage I would like to display a different image on the mobile version to the desktop version (I would like a large banner at the top of the page that when viewed on mobile would fill the whole screen). This is the image I am wanting to use for desktop: http://www.thesitdowncomedian.com/wp-content/uploads/2018/02/1920x1080v6.jpg but when viewed on mobile it is too small to read so I would like to insert a different image that fills the whole screen. What code (and where should I insert it) do I need to achieve this?
Cheers
Hi, I recently installed this theme. It’s awesome, but I can’t find an option to disable author info anywhere…
I have put this css code `.td-related-title .td-related-right {
display: none;
}`
This removes the author from posts and pages, but they still show up on categories/widgets/elements on my home page. Is there any other css code I can add to stop showing author name everywhere.
I was looking to do the same thing. I setted up font to Roboto but theme is still loading Open Sans (is a useless request now and resource consuming loading). I’m searching this code to delete it but still can’t find it in the WordPress editor.
<link rel=’stylesheet’ id=’google-fonts-style-css’ href=’https://fonts.googleapis.com/css?family=Roboto%3A300%2C400%2C400italic%2C500%2C500italic%2C700%2C900%2C800%7CNoto+Serif%3A400%2C700%2C800%7COpen+Sans%3A300italic%2C400%2C400italic%2C600%2C600italic%2C700%2C800&ver=8.8.1′ type=’text/css’ media=’all’ />
-
This reply was modified 8 years by
gocciolo.
Hello gocciolo,
Please keep in mind that’s the default source code of our theme. If you will deeply check, there you will see all the required resources which are loaded (header, footer, CSS, js)
Thanks for your understanding!