- NewspaperWP Rocket and Newspaper Theme: Optimization Guide
- TutorialsFrom WPBakery to tagDiv Composer
- TutorialsDefault Block Settings Guide
- TutorialsHow to use custom fonts
Hello Javier,
Please try the code below and add it in Theme panel->Custom CSS area.
.td-header-wrap .td-affix .sf-menu > li > a {
color:#bed600!important;
}
The result you should see here -> http://screencast.com/t/3aBRl9SQzdN
Thank you for the message!
Hi
To achieve that you need to edit the loop file corresponding with the post template used for post and move the indicated line like here: http://screencast.com/t/XgplJP2zrKD Also you will need this css in theme panel > custom code > custom css: http://screencast.com/t/Jjlzc4DkBp
.td-category{
float: left;
}
Let me know how it goes.
Thanks!
Hello,
Unfortunately we cannot say for sure why the sidebar created this issue. It could have been a caching issue that got resolved when reinstalling the demo. It could also be a plugin compatibility issue. Some plugins tend to rewrite some of the theme css and create issues. If you encounter the problem again, please try to disable all plugins except visual composer to see if one of them is the cause.
Thank you!
Hello,
You can use a css trick to hide the description on a preferred post. You will need the post id first: http://screencast.com/t/xcvb8GZy
Then you can use the post id with css for example:
.post-3376 .td-author-description{
display:none!important;
}
Thank you!
Hello yycnow,
If you want to remove that white space, you have to use a bit of CSS. Please try the code below and add it in Theme panel->Custom CSS area.
.td-main-content-wrap {
padding-bottom: 0;
}
.td-cars .td-black-row {
margin-bottom: 0px !important;
}
The result -> http://screencast.com/t/WE0gNLWi
If you want to have the different color for each page, you have to target it by page ID.
..page-id-3551 .td-main-content-wrap {
background-color: black;
}
The result -> http://screencast.com/t/MkuqlcmWe
Please notice that you have to do some customizations to give a good look.
Hope this helps!
Thank you for the message!
Hi guys,
I need help about reducing the spacing before bullets. I want to keep the spacing on typical paragraph spacing.
Is it possible using custom css codes?
Here’s an example where the spacing before the bullet form looks like a double space. http://www.manilashaker.com/water-proof-water-resistant-analysis-difference/
Hello,
I’m not sure how you want the category title positioned but you can use this css and ajust the left and right property to your prefference:
.td_block_1 .td-module-image .td-post-category{
bottom: -16px!important;
right: -5px!important;
}
Thank you!
Hi,
You can align your post content to justify when editing a post: http://screencast.com/t/mNeQdJmUCgmO
If you want to make all post text to justify, you can use css to do it:
.single-post .td-post-content{
text-align: justify!important;
}
Thank you!
Hello zetam1320,
If you want to change the style of the “Load more” button to be more visible, you have to use a bit of CSS. Please try the code below and add it in Theme panel->Custom CSS area.
.td_ajax_load_more {
font-size:15px;
background-color:red;
color:white!important;
padding: 15px 20px;
}
The result-> http://screencast.com/t/m9nIvchxEr
Please notice you should adjust these values as you wish.
Hope this helps and let us know how it goes!
Thank you for the message!
Now I know how to change the background color to white in sticky menu with this CSS
.td-header-menu-wrap.td-header-gradient.td-affix {
background-color: white;
}
But I need also to change the menu text color. Could someone help me with this?
Hi,
You can replace these files:
1) td_panel_footer.php (includes/wp-booster/wp-admin/panel/views)
2) td_view_system_status (includes/wp-booster/wp-admin/panel/)
3) td_wp_booster_functions.php (includes/wp-booster/)
4) td-config.php (includes/)
5) td_footer_extra.php and
6) td_footer_extra_bottom.php (parts/footer)
7) style.css (root)
8) style-woocommerce (root)
You can update visual composer as well as there is a new version in the the new update.
Thank you!
Thanks Catalin, for your message.
I tried the custom CSS in theme panel custom css are but unfortunately, it doesnt make any difference.
is there anything else that might help with this ?
I do understand the limitations in assisting on custom work. Thanks for your guidance despite too many requests.
Hello,
I would like to change the colours of the menu when I scroll the page. The site http://www.dietistasnutricionistas.es has a green menu and when it gets sticky, I would like to change the background colour to white and the letter to green and change the size of the menu text.
I have been looking for some CSS ideas in the forum and I did not find anything. Could please help me?
Thank you in advance!
Hello,
I have checked your website and saw the “bug”. It is actualy a plugin that causes this. It is rewritting the css for the pagination: http://screencast.com/t/f0sqiyK3i0V – http://screencast.com/t/eM5xB14PA
Fortunately this issue is easily corrected with css without removing the plugin:
.last {
margin-right: 8px!important;
}
Please check your website for other css errors that the plugin might cause.
Thank you!
Hello salimnazer,
If you want to remove the drop shadow below the Menu bar, you have to use a bit of CSS to hide it. Please try the code below and add it in Theme panel->Custom CSS area.
.sf-menu > li > a:after {
display:none;
}
The result -> http://screencast.com/t/3ox2zbwHY
Unfortunately, our theme does not have such a quick option for your desired search button. This request implies custom work. It is necessary to do some changes in code in order to implement the search button in your main menu bar. If you want to display more levels in our theme and you are not aware the steps in this regard, please consider hiring a freelancer/developer to help you because we cannot provide custom services at the moment, sorry!
For more references about this, you should find here -> https://wordpress.org/support/topic/search-bar-in-the-main-menu-or-in-a-container-div-containing-both-in-floats -> http://cyberchimps.com/guide/how-to-add-a-search-bar-to-the-main-menu/ or you can use some plugins with this functionality and see how it works for you.
Hope this helps!
Thank you for your understanding!
Hi
Try this css: http://screencast.com/t/R3pPJaHQ
.sf-menu > .current-menu-item > a{
color: red;
}
Thanks!
Hello Nicolai,
If you want your row to be transparent you will get the white box as there is a container underneath it with a white background (the main page wrap): http://screencast.com/t/ScR33wJO2Yx
In order for the background image of the page to be visible through the container, you will need to create a gap in the container.
This will require some css tricks to work. You can use this code:
.home .td-main-page-wrap{
position:relative;
top:530px!important;
}
.td-travel .td-travel-header{
height:0!important;
opacity: 0!important;
}
I think this is the result you are looking for: http://screencast.com/t/jvyjjHhbM
I hope this helps.
Thank you!
Hi
Yes unfortunately by setting the z-index at 0 the links won’t work anymore. Another solution would be either to change the footer css code a bit, but this is a difficult task, or adding a margin to the facebook comment container using custom css:
.fb_iframe_widget_fluid span{
margin-bottom: 100px;
}
This is not the best solution but it will work. Another solution would be to add the margin only when user click on this link: http://screencast.com/t/fD3SboQ2RaCh but this require a js script and this is a bit hart do do.
Thanks!
Hello,
The css must be done on every site in particular as not all the logos have the same dimensions and not all users have the same plugins which might overwrite some of the css. So if you require a css code for a modification, please point out your website and make sure you have the specific header style selected as it will need to be customized ‘on the spot’.
Thank you!
Hi
Please consider that Speed Booster it’s an optional plugin meant to improve the site’s page-speed but its usage require good php knowledge. Following our guide you should be able to move successfully move the css/js resources from header to footer. You can look on the forum for more details regarding plugin’s functionality and possible solutions at some issues which may appear. Are many topics about page-speed and Speed Booster, one of them it’s this one: https://forum.tagdiv.com/topic/js-css/ which may help you.
If you still can’t manage to solve this or you don’t have experience on wp condign or basic html/css/js/php knowledge please consider hiring a freelancer to configure this for you because we recommended this just for advanced wp users. Sorry!
Thanks for the message!
Hi
The theme counts only the paragraphs from text when display the article inline ad. To display the ad above the this sub-title: http://screencast.com/t/EKA4qZzB you will need another paragraph like here: http://screencast.com/t/BdBYkV49DQf Also you will need this css in theme banel > custom code > custom css:
.hidden-p{
display: none;
}
The result should be like here: http://screencast.com/t/mSmZq8h1
Thanks!
Hello nicolai,
1)Am facut mai multe teste si intr-adevar este un mini bug cu header style-ul 8. Va rog sa folositi codul CSS de mai jos pentru a regla dimensiunea logo-ului pe bara sticky.
@media (min-width:768px){
.td-header-style-8 .td-affix .td-header-sp-logo img {
width:158px!important;
}
}
Rezultatul se poate vedea aici -> http://screencast.com/t/Sd6ZuX0kx
Am trecut aceasta problema pe lista noastra de revizuiri si vom tine cont de ea in viitoarele update-uri.
2)Pentru tipul de meniu din header style 12, culoarea care o veti seta in sectiunea ACTIV&HOVER din Theme panel se va aplica doar pentru efectul de Hover de pe link-urile din meniu si nu pe meniul in sine ->asa este conceput acest stil de meniu -> http://screencast.com/t/LEhK2wEJv2Wl
Daca doriti sa schimbati acel efect de pe meniul principal, trebuie sa folositi un pic de CSS pentru a schimba culoarea.
Codul este ->
.td-header-style-12 .sf-menu > .current-menu-item > a, .td-header-style-12 .sf-menu > .current-menu-ancestor > a, .td-header-style-12 .sf-menu > .current-category-ancestor > a, .td-header-style-12 .sf-menu > li > a:hover, .td-header-style-12 .sf-menu > .sfHover > a {
background-color: rgb(227, 27, 27) !important;
}
Rezultatul se poate vedea aici -> http://screencast.com/t/wyPXtnMz9ct
Multumesc pentru mesaj si o zi frumoasa in continuare!
Buna
Ceam mai simpla metoda prin care poti aduga un tag de H1 pe pagina e adaugarea unui text block in Visual Composer iar unul dintre paragrafe sa aiba heading-ul indicat: http://screencast.com/t/ltxuDgzb
O alta metoda ar fi sa foloseste template-ul page builder + title care adauga titlul pagini cu un tag de H!: http://screencast.com/t/IwCKZDFm – http://screencast.com/t/3RxALFcHEz
Referitor la folosirtea functiei anterioare am prtecisat in mesjul anterior ca aceasta intoarce doar un titlu generat in php. Heading-ul tine de html iar acesta trebuie adugat manual. Modul in care e afisat titlul in pagina e influentat de heading-ul pus pe acel titlu si de codul css care se aplica pe el si pe containerul in care este inclus. Daca apare un spatiu gol cel mai probabil elementul are o margine sau un padding care trebuie ajustate din css.
Tagul de
Multumesc!
Hi
I’m using “open sans hebrew” for all the titles (H2,H3) that is working well in all other platform except Windows 7 with Internet Explorer 11. I try every CSS tricks that i can think of. Need your assistant.
tgspot.co.il
Thanks.
I’ve tried the css edit you suggested and it does bring the dropdown menu to the front.
But it has a nasty side effect; the footer becomes unusable. I can’t click on any of the links or even select text for that matter.
I’ve also looked a the code for the plugin but there isn’t a separate css file. It’s just the basic code Facebook supplies.
Could you think of another way to solve this problem?
Thanks for the effort.