38442 comments found.
Hi,
Where can I change toggle/accordion icon from +/- to something else?
Cheers,
Hey krispdots, Are you trying to change them into another font based icon or use an image? Could you also share your URL or let me know which toggle style you’re using? Thanks in advance
Trying to change to font based icon. Using Minimal style toggle.
Hey krispdots, add this into the custom css box in the Salient options panel:
#ajax-content-wrap div[data-style="minimal"] .toggle i:after {
display: none;
}
#ajax-content-wrap div[data-style="minimal"] .toggle i:before {
font-family: FontAwesome;
content: "\f09a";
background-color: transparent!important;
color: #000!important;
top: 7px;
width: auto;
height: auto;
}
#ajax-content-wrap div[data-style="minimal"] .toggle.open i:before {
content: "\f099";
}
Theme Import is not working… tried to read documentation and it goes nowhere.
https://themenectar.com/docs/salient/importing-demo-content/can you help? My client purchased and have purchase code as needed
To be clear I click the import button it doesn’t even start. It stays at 0% and never loads
Hey ultrapyro, if the demo importer has stuck on 0% for you, then a javascript or internal server error is occurring. Can you please check your PHP server error log for any recent fatal errors to shed more light? Also, please open a ticket on our support forum in regards.https://themenectar.ticksy.com Thanks in advance
are you provide freelance service for your salient theme. because i want to customize woocommerce checkout page. kindly provide your email address/skype id please
Hey waqarruk, I am not personally available for customization gigs. Please check out Envato Studio in regards: https://studio.envato.com/
Cheers
How I can translate de core-plugin with a child-theme. I need to replace some texts. Thanks.
Hey thiagoleonel, each of the Salient plugins comes with a .pot file for translation purposes. You can find the salient-core .pot file in wp-content/plugins/salient-core/languages
Yes, I translated. But it doesn’t work on my child theme. Thanks again.
Hey thiagoleonel, Please open a ticket on our support forum in regards with temporary admin credentials so we can take a closer look into this: https://themenectar.ticksy.com
Thanks in advance
I can’t put a texto bold in any page. How do I do it?
Hey financasparadois, Please share your URL to a page where you have inserted a bold tag so I can take a look at your settings.
Thanks in advance
Hello, I tried with both and tags and it didn’t work. In any page of my site.
An example is in the text “sem ser aquele chato ou chata” (you can search this phrase) on page https://financasparadois.com/006
The text is not showing as bold because default bold weight in Salient is 600, which is the same as what you’ve defined for your body text for the font “Muli”. To make it bolder, load a higher weight of that font in the Salient options panel for any item (example: https://i.imgur.com/fCCuVVp.png ) and then add this into the custom css box in the Salient options panel > general settings > css/script related tab:
body strong, body b {
font-family: Muli;
font-weight: 800;
}
thank you, that worked!!!!
Glad I could help financasparadois :)
Hi. Excellent theme. How I make a sticky side bar? It is possible?
Thanks.
Thanks thiagoleonel 
The sticky sidebar option is available for “Widgetized Sidebar” page builder element and also available for the blog sidebar in the Salient options panel > blog > styling tab (when using a sidebar based layout)
Thanks.
You’re welcome thiagoleonel
Hi Team,
Is there any HTML version for this theme.
i don’t want to use wordpress for my application home page.
Hey alpwe,
Salient is currently only available as a WordPress theme.
Hi,
I am trying to lower the font size for the Flat Alternative pricing table’s title, the H3 on tablets but it does not work. I use the following code, am i using the wrong CSS selector?
@media and only screen and (max-width: 1000) {.pricing-column h3 {
font-size: 10px!important;
}
}
Can you please correct what i am doing wrong?
Thanks
Hey toolbox101,
Could you please share your URL in regards so I can take a look to assist?
Cheers
Here it is http://dps.677.myftpupload.com/pricing/
I just want to make the title’s smaller and add line hight for ipad.
ipad pro and below.
Hey toolbox101,
I can see your CSS taking effect, however, it will only apply to tablet views in portrait mode since the width in landscape is greater than 1000px, as defined in your snippet. If you also wantr to effect the landscape view, alter the snippet to be:
@media and only screen and (max-width: 1100) {
.pricing-column h3 {
font-size: 10px!important;
}
}
Cheers
That still did not work, please check the link here http://dps.677.myftpupload.com/pricing/
Sorry about that, the (max-width: 1100) in the snippet needs to have “px” added to it like so:
@media and only screen and (max-width: 1100px) {
.pricing-column h3 {
font-size: 10px!important;
}
}
Is this for ipad pro? because it still does not work
That’s for all mobile devices up to 1100px in width. If you want to apply it to all mobile devices, regardless of how big the screen is, you can change it to
.using-mobile-browser .pricing-column h3 {
font-size: 10px!important;
}
so this class .using-mobile-browser targets that H3?
That’s correct, the class name “using-mobile-browser” is applied only when the site is viewed on a mobile device, so it will apply to all regardless of the size.
That still did not work, it does not change the font size of the h3
Hey again toolbox101,
The URL you’ve previously supplied is not currently using Salient: http://dps.677.myftpupload.com/pricing/ can you please provide a new one with that snippet active so I can take a look?
Sorry here is the new link http://og1.c14.myftpupload.com/
And this is the issue on ipad Pro https://imgur.com/a/mmlT48q
I wanna make the H3 smaller so it fits to the screen nicely and does not get cut off or stock on top of each other.
Thanks toolbox101, I just checked on an iPad Pro in both portrait/landscape views and can see the CSS taking effect: https://ibb.co/Z8PLG2Y Have you ensured that your mobile browser cache has been cleared?
Thanks, I will try this again, by the way I am using iPad pro 12.9 inch display, not the small one which is 11 inches.
And yes i had cleaned the browser cache and server cache… but i’ll try again.
By the way, are there any plans to add a new skin? Now most salient built sites are using material skin and all sites are becoming to be similar to each other. 
Hey toolbox101,
Are you still unable to see it on your end?
The next update is not bringing a new skin, but new menu related options are being added 
Cheers
Hi,
Here you go, I am testing it on new generation ipad pro 12.9
http://og1.c14.myftpupload.com/wp-content/uploads/2020/01/RPReplay_Final1579555030.mp4In that video you can see that the font is not fixed, I have even cleared all the browser cache.
Thanks
Hey toolbox101, I was previously checking on an iPad Pro 11 – try this snippet instead:
@media only screen and (max-width: 1500px) and (min-width: 1000px) {
.pricing-column h3 {
font-size: 10px!important;
}
}
Thank you, i’ll try this and keep you posted.
When do you think the new update will be ready? 
Also, can you please add link option to the list items?
Thanks
Hey toolbox101, no exact date but within a few weeks 
nice theme gud luck 
Thanks AliA 
Are there any planned or documented bugs for frontend editor? Unable to append items or add elements from frontend. When doing so and clicking “Save Changes” nothing happens. If adding a “Row” it does not appear.
Hey siahjr,
Are you using the most recent release of the page builder (6.1) and have verified that no third party plugins you may have active are causing the issue? If so, please open a ticket on our support forum in regards with temporary admin credentials so we can take a closer look into this: https://themenectar.ticksy.com
Thanks in advance
Updating Theme Salient (1/1)
Please help as it keeps my website on maintenance mode all the time
Hey gorangagrawal5,
Could you please check your PHP server error logs for any recent fatal errors to shed further light on the root cause? In the meantime, you can also update the theme manually using FTP to get back online: http://themenectar.com/docs/salient/updating-salient/#methods
Hey, i love this theme
i have presale question: is there wpbakery builder included in the purchase?
That’s cool to hear przemyslaw81
Yes, a tailored version WPBakery is included, specifically for Salient. You can preview the UI in our promo video: https://www.youtube.com/watch?v=RDC1ZFFhZq8
Cheers
Recently updated to version 11.0.4, but I am not seeing the “Corporate 3 Demo” available for use. How can I get access to this demo? Thanks!
Hey adw1126, have you also ensured that the Salient demo importer plugin is using the most up to date version? If so, please reach out via the contact form on my author page https://themeforest.net/user/themenectar
Thanks 
Hey brianfreeman,
add this into the custom css box located in the Salient options panel > general settings > css/script related tab:
body #header-outer:not(.transparent) #top nav > ul > .button_bordered_2 > a {
color: #ff4f00!important;
}
body #header-outer:not(.transparent) #top nav > ul > .button_bordered_2 > a:before {
border-color: #ff4f00!important;
}
Cheers
Guys I love this theme. You’ve done some great work!
I’m going to renew my support license but was wondering if there is a way to change the mobile nav menu text that says “get involved”?
<a href="#sidewidgetarea" class="closed">GET INVOLVED</a>
I would like to get the burger menu icon.
Thanks a lot lukehart0403_electricink!
By default, the mobile menu is a burger icon, without that text. Can you share your URL in regards so I can take a look at your setup?
Cheers
Hello, I have a client who only wants to use the font’s ‘Futura’ and ‘Montserrat’ on their website. Is there a place where I can upload the .otf or .tff files for those fonts to use? Or am I better off just finding similar google fonts to use? Thank you!
Hey worldwidedesign!
You can use the following plugin to upload custom fonts:https://wordpress.org/plugins/use-any-font/ However, please note that “Montserrat” is already available as a Google font.
Cheers
Hi, I installed today the latest version of your update 11.0.4.
But now I have a graphics issue on my homepage
https://imgur.com/xxvIE1BThis graphic issue is only visible on the browser Internet Explore.
Currently my license for support has expired.
regards
Hey nedana, the fix for that is in the current beta release for the next major version. Feel free to reach out in regards via the contact form on my author page https://themeforest.net/user/themenectar or you can simply add this into the custom css box located in the Salient options panel > general settings > css/script related tab:
[data-shadow*='depth'].img-with-aniamtion-wrap .hover-wrap,
[data-shadow*='depth'].img-with-aniamtion-wrap .hover-wrap .hover-wrap-inner {
width: 100%;
}
issue fixed.. thank you
Glad to hear nedana 
Hi ThemeNectar,
Happy Holidays to you and your crew.
https://dev-protectoceansnew.pantheonsite.io/If you visit the link above I added a secondary menu via the Menu section because I needed multiple options for a English/French version.
The trouble I’ve run into is the secondary menu isn’t sticky like the main menu. Can you please let me know how I can make the secondary menu sticky as well.
Many thanks.
Best, Alan
Hey Alan, it should be sticky by default. If you’ve modified the header files in your child theme, can you ensure that it’s not causing the issue by temporarily deactivating the child?
You were corrected that something was modified within the header file of the child theme. Unfortunately, as bad as this may sound I am not sure what was altered. Is there any way you could offer some thoughts on to what may have been modified to cause the issue. Many thanks.
Best, Alan
Hey Alan,
in v10.5 of Salient, the header.php was rewritten. You would need to update your child theme version to match the new parent structure
Perfect! Updating the child theme worked. Many thanks.
Two follow-up questions:
1) Since I updated the Child Theme the Header.php file from Theme Editor disappear. Is there a new location for it?
2) https://dev-protectoceansnew.pantheonsite.io/expeditions/imappivut/ If you visit the link above, there is an image half way down under an orange bar with text. I added that image as a background image. The issue I am faced with is, that is doesn’t appear to be responsive on mobile devices. Is there a way I can change that? (Note: the image is of 2 people looking over a map)
Best, Alan
Hey Alan,
1. The header.php file is not normally included in the child theme. It was likely added in by someone on your team for modifications but it does not need to be in there.
2. Add in a “divider” element inside of the column which has the background image. The height you set for that will end up being the height that the column becomes on mobile ex “250”.
Hi ThemeNectar,
Thanks for your help.
1. Perfect thank you!
2. Amazing! That did the trick.
Thank you again for all your help. The support for this theme is A+++ as always
Best, Alan
Glad I could help Alan 
Having some trouble with my header at certain window sizes, instead of going from desktop to mobile seems to do something strange in-between. Putting the social icons in the middle of the screen and not aligning the search account and basket to the right.
https://www.foodieflavours.com/ https://ibb.co/5vmRCSBHey MarcGarner, That’ll be corrected in the next release – you can add this in regards:
@media only screen and (max-width: 1100px) and (min-width: 1000px) {
#header-outer[data-format="centered-logo-between-menu"] #top .span_9 {
padding-right: 0!important;
}
#header-outer[data-format="centered-logo-between-menu"] #top .span_9 nav .sf-menu:not(.buttons) {
-webkit-justify-content: flex-end;
justify-content: flex-end;
}
}
Cheers
Thanks that helps, but is it possible to hide the social icons in the menu as soon as the menu moves to the off canvas menu.
So there are two versions full desktop menu and full mobile menu. rather than having a third one in-between when the social icons remain.
Hey MarcGarner,
You can also add this in for that:
@media only screen and (max-width: 1100px) and (min-width: 1000px) {
#social-in-menu {
display: none!important;
}
}
Hi I’m also having a problem with my portfolio page since the latest update. My 2 column portfolio is switching to a 1 column portfolio at certain magnifications on my browser including 100% on my 13 inch Macbook pro.
I understand that it is set to certain pixel widths so when the screen reaches 1000px it will switch to a 1 column layout but the problem jumps back and forth with viewed at different pixel widths from 1000px – 1000px. It’s very strange.
Please could you take a look at it for me.
https://alexbirks.co.uk/portfolio/Hey again alexbirks, this is a known issue that will be correct in the next major release. For now, you can add this into the custom css box located in the Salient options panel > general settings > css/script related tab:
@media only screen and (min-width: 1000px) {
body .portfolio-items .col.span_6,
body .portfolio-items[data-ps="6"] .col.span_6 {
width: 49.7%;
}
}