38330 comments found.
Hi TN,
Just wondering – is there a way that the SUB-MENU can also be transparent before scrolling?
For the ‘Menu Bottom Bar’ option with shrink after scrolling, the actual header is transparent when at the top of the page, but the submenu’s still have the background box. I’m hoping I can have them both behave the same way (e.g. color change in the text, background color after scrolling etc.)
It would only be for one page – the home page – so I’m hoping there’s some CSS that would do this
Many thanks!
Hey ND81!
Adding the following snippet into the custom CSS box located in the Salient options panel > General Settings > CSS/Script related tab should make that change:
#header-outer.transparent #top .sf-menu li ul {
background-color: transparent!important;
}
#header-outer.transparent #top .sf-menu li ul a .menu-title-text {
color: #fff!important;
}
Kind regards
Perfect! Many, many thanks
You’re welcome, ND81 
Hi again guys,
One further question here – I notice when I actually click on a sub menu link, the background color appears; it’s only brief before the page changes, so not critical. I’ve tried to locate where this CSS is to target, but not having much luck. Is that something that could be adjusted here through CSS as well?
Hey ND81, try adjusting the snippet to the following:
https://pastebin.com/CHmKgL7BIf that doesn’t work for you, please share your page URL in regards so that I can take a look at your site settings to assist further.
Kind regards
You guys are wizards! Worked a charm – many thanks!
Hi again, one more (hopefully!) small item; I’m just wondering where I would look to manually change order for social media icons in the header
Hey ND81!
You could copy the function “nectar_get_social_media_list” from salient/nectar/helpers/header.php into your child theme in order to reorder the list as desired.
Kind regards
Perfect! That did it. Thanks again!
Cheers, ND81 
Hello! How can i enable to open sidecart everytime a product is added to the cart, instead of redirecting to the cart page? Thanks!!!
Hey paulinavargasin!
Do you have the following options enabled in your Salient options panel > WooCommerce tab? https://ibb.co/nmZ71kN
If so, please open a ticket on the support forum in regards with your site URL so that we can take a look into your settings to assist.
Kind regards
Hi, is there any way that I can put the secondary menu on the top bar on the left? instead that on the right. Also, which plugin would you recommend if I wish to put a sliding down top bar that show a message? thanks in advanced.
Hey eddieneg,
1. You could make that adjustment by adding the following snippet into the custom CSS box located in the Salient options panel > General Settings > CSS/Script related tab:
#header-secondary-outer ul#social {
float: right;
}
#header-secondary-outer ul.sf-menu {
float: left;
}
2. Unfortunately I don’t have a specific plugin to recommend for that functionality. However, if you run into any issues, feel free to open a ticket on the support forum in regards
Cheers
Thank you very much , you rock!!
You’re welcome, eddieneg 
Hey there, I am seeing big spacing after all of my listed part of the content. Do you know what would cause this or how to make this gap smaller like the rest of the paragraphs?
its within this coding: ol li {}
Here is an example: https://factsontaxes.com/5-common-sales-tax-mistakes-to-avoid/
You can see the normal paragraph spacing is good – because I added this code: p { padding-bottom: 15px } but the problem is with the spacing paragraph under the listed item its like double the spacing.
Thanks in advance.
Hey msherstenka,
The default bottom margin for ordered and unordered lists is 30px. You can also change that with a simple rule such as :
body ol, body ul {
margin-bottom: 15px;
}
Kind regards
Thank you!
You’re welcome, msherstenka 
Hello,
In the Salient Template “Toggle Pricing Tables” I would like to integrate the “Accordion Toggle Panels” but it does not exist in the elements to add from the library.
Do you know where to find it…?
Regards
Hey nedana,
The studio template “Toggle Pricing Tables” are already inside of a Tabbed element, which can not contain another Toggle element by default. Currently, the Toggle panel element must be a direct child of a column and not nested within other elements.
Kind regards
hi, any way to put the menu text when you are for example in a page like contact, put the contact text on the menu in bold? thanks
Hey dimage,
Yes, that would be possible with a snippet of custom CSS. For example:
https://pastebin.com/Y1f3RtpvKind regards
great thanks.
You’re welcome, dimage 
Is there any chance on helping figuring out the structure of your themes presentation site (after purchasing of course)? It has some really interesting sections and order. It says that it built with salient. Also is there any extras needed to achieve similar layout ?
Hey SpirosCarelakis,
The sections seen on the demos can easily be added to your pages via the Salient Studio Template library. If you need assistance in replicating specific sections, feel free to open a ticket on the support forum in regards.
Cheers
Using the below shortcode within a text block for 2 columns of text. How can I maintain the 2 columns on mobile? ATM they go to 1 column one below the other.
Shortcode:
Tuesday Wednesday Thursday Friday Saturday Sunday /one_half09:00 – 12:00 09:00 – 18:00 09:00 – 18:30 09:00 – 17:00 13:00 – 18:30 On Request On Request [/one_half]
Hey MarcGarner,
The one_half legacy shortcode doesn’t have built-in responsive options like the page builder columns, so a snippet of CSS would be needed for that:
@media only screen and (max-width: 1000px) {
body .col.span_6 {
width: 50%;
}
}
Kind regards
Thanks that works perfectly
You’re welcome, MarcGarner 
This is still going to one column beneath the other on tablet sizes. With a window about 1000px – 700px wide this happens.
Hey Marc, If the following change doesn’t work, please share your actual page URL so that I can take a look:
@media only screen and (max-width: 1000px) {
body .col.span_6 {
width: 50%!important;
}
}
It would be pretty cool if in the future updates u will add dark/light mode
Hey raffess, I’ve noted your +1 for that idea on the wishlist 
Hi there, We consider on giving a shot on the great theme you have here and wanted to know if there is compatibility with litespeed plug in checked. And litespeed server structure generally. Thanks.
Hey SpirosCarelakis,
Salient is compatible with the performance plugin, litespeed as well as the litespeed server architecture.
Kind regards
Where do I change the logo?
Hey Lovethexoxo,
The logo is specified in the Salient options panel > header navigation > logo & general styling tab.
If you’re using the transparent header option, then you will also find additional logos in the Salient options panel > header navigation > transparent header effect tab.
Kind regards
Using the Fullscreen Inline with Dynamic Background off canvas menu setting. The logo and close menu button are white/light.
How can I set this to use the dark logo and a dark coloured close button? https://ibb.co/4ZQJhxCHey MarcGarner, that could be achieved with CSS similar to this: https://pastebin.com/xWiLEGHj
hi on mobile https://burot.es/project/moli-den-garleta/ the top is showing grey color background before the first image, how can i disable that? or put for example the image in front the background? thanks
Hey dimage,
Your row has 30% padding set for the top on mobile only. You can remove that by editing your row and switching to the phone viewport next to your padding field: https://ibb.co/S7rcdsq
Kind regards
thanks
Hello! Many many thanks for the amazing theme. For the recent project fullscreen zoom slider, there’s maybe the possibility to change animation? For example just fading between images? Thanks and cheers!
Hey Fabilous, I’m glad to hear that you’re enjoying Salient 
Unfortunately there are no other animations offered for that specific style of the recent projects as of now. However, the existing animation could be modified via a child theme with some custom CSS.
Kind Regards
pre purchase question – is it possible to use your demo page looks pretty amazing just what we wanted
Hey knackng 
That page is not available to import through the Demo Importer plugin, However, we’ve added most of the “sections” of it into the Salient studio template library so it can mostly be easily recreated: https://themenectar.com/docs/salient/salient-studio/
Kind regards
Hi, we use Salient with the Yoast SEO plugin, but the Split Line Heading element isn’t recognized as words. Is there a way to fix this?
With a text block it works fine, but it looks like some elements aren’t recognized with Yoast. Any fix available?
Hey nanowebnl,
Are you using the latest version of the Salient WPbakery Page Builder (6.9.2)? If not, please update your version of the theme and then the available Salient plugins to get access to it. https://themenectar.com/docs/salient/updating-salient/
If you’re already using that release and not seeing Yoast count the words, please open a ticket on the support forum in regards
Kind regards
Hi ThemeNectar, is there a way to create blocks for a page that can be just drag and drop. For example, if I design a row, with a given number of columns and components inside, that I would like to repeat (same structure) but with other info in different pages of the site, so that I don’t have to create them over and over again? Thanks!
Hey PriR,
You can edit the row you wish to save as a template and then click on the gear icon within the settings to save it. Once it’s been saved, you’ll be able to access it via the “My templates” button: https://ibb.co/sJBM5qb
Cheers
Hi,
If the project grid has already this css added. nectar-browser-window-style And i have my own CSS, can i add the 2nd one with comma? Or it works with a single css target only?
Also, can i make all the external URLs in the project grid nofollow? Only the external, not the internal projects.
If no, can you add to coming update? This will help with SEO.
THANKS
Hey toolbox101,
1. You can add as many classes as needed. Just separate them with spaces, not commas.
2. There’s no built-in option for that at this time, but I’ve noted the idea for the wishlist 
Kind regards
Halo, can you help us, why in our website https://www.kyutskin.com/ the favicon not showing when we visit the front end, but if we visit in wp-admin (back-end) we can see the favicon in he browser https://prnt.sc/vZsEYGsYpdLI
Hey shaky512, the favicon is a core WP option and not something Salient handles directly. If you’re having trouble with that, kindly open a ticket on the support forum in regards so we can take a look at your backend settings.
Can we change this popular article https://prnt.sc/ljqM_lgx9LEN (in this case, we are using Nectar Popular Post in appearance>widget) we need to show specific popular post from specific category only (example Heights) in specific post with the same category (example: Heights) https://prnt.sc/wyWT308a6i-v.
If posibble, if not, can you give us css code to hide sidebar in specific post
Hey shaky512,
There is no option to query popular posts in that widget based on a specific category. You can hide it with the following snippet:
.postid-5794 #ajax-content-wrap .post-area {
width: 100%;
margin-right: 0;
padding-right: 0;
}
.postid-5794 #ajax-content-wrap #sidebar {
display: none;
}