Okay
  Public Ticket #2452756
clients display
Closed

Comments

  •  2
    Lollo started the conversation

    Hi there,

    About 'client display' feature, is there any way to show a text below the logo image or, which would be the same, show the Client Name text?

    Thank you!

    Lollo

  •  8,884
    Tahir replied

    Hey Again,

    No, I am afraid thats not possible. However you can use the Carousel Page Element and add a Image and Text in it .

    Thanks 


    ThemeNectar Support Team 

  •  2
    Lollo replied

    Got it, thanks Tahir!

  •  2
    Lollo replied

    Hi Tahir,

    I am planning a new website which I 'd like to develop with Salient.

    The thing I am not sure I can solve is a requirment of my client about the main menu. For certain pages, I'd need to have a secondary menu, ideally below the main menu, but both should come with a dropdown. 

    I have tried to add a 'WP custom menu' but then this menu appears all unfolded.

    Is there a way to make this work, even through an extra plugin?

    I appreciate your suggestion.

    Best,

    Lollo

  •  8,884
    Tahir replied

    Hey Again,

    Unfortunately, we haven't tested any such plugin with Salient. Though you can replace the Main menu for each page using this plugin or similar: https://wordpress.org/plugins/zen-menu-logic/ .

    Thanks


    ThemeNectar Support Team 

  •  2
    Lollo replied

    Thanks Tahir,

    I might have found a solution with the plugin 'Conditional Menus' which allows to maintain the main menu and add the secondary header which content can be different in every page. 

    The only limit now is that the secondary navigation bar will appear above the header navigation. In order to be 'secondary' in my case I'd need it to stay below the main header (in both desktop and mobile view). 

    Would that be possible?

    Thank you

  •  8,884
    Tahir replied

    Hey Again,

    No, unfortunately Salient does not provide any such feature at the moment.

    Thanks 


    ThemeNectar Support Team 

  •  2
    Lollo replied

    Just to be sure I was clear enough: you mean there is no way to move the secondary bar below the primary with CSS?

    Do you think a developer could do it easily?

    Thanks again

  •  2,979
    Andrew replied

    Hi Lollo,

    Try the following css:

    #header-outer {
        display: flex;
        flex-direction: column-reverse;
    }
    

    Thanks.

  •  2
    Lollo replied

    Thanks Andrew,

    Do you know how to change text colours of the form? I have a dark background and need to put texts and fields in white color.

    Thanks,

    Lollo

  •  2,979
    Andrew replied

    Hi Lollo,

    Please share a link to where you set the form so that we sent possible css.

    Thanks.

  •   Lollo replied privately
  •  2,979
    Andrew replied

    Hi Lollo,

    Use the following custom css:

    .wpcf7 .wpcf7-form p label {
        color: white;
    }
    

    Hope this helps.

  •  2,979
    Andrew replied

    Hi Lollo,

    Try the following CSS.

    .wpcf7 input[type="text"],
    .wpcf7 input[type="email"],
    .wpcf7 textarea {
    background:#725f4c;
    color:#FFF;   
    }
    

    Thanks.

  •  2
    Lollo replied

    Thanks Andrew, that was quick!

    With your first code I have the description field text on white but the text inside the filed on grey.

    With your second CSS, it's right the opposite (first white and second grey).

    I'd like both to be white. 

    Thanks again!

  •  2,979
    Andrew replied

    Hi Lollo,

    Try the following to change input fields text:

    .container-wrap input[type="text"], .container-wrap textarea, .container-wrap input[type="email"], .container-wrap input[type="password"], .container-wrap input[type="tel"], .container-wrap input[type="url"], .container-wrap input[type="search"], .container-wrap input[type="date"] {
        color: white;
    }
    

    Thanks.