Okay
  Public Ticket #1098624
change php files theme
Closed

Comments

  •  2
    Omws started the conversation

    Hi,

    I use the "clients" page builder system.

    I upload several logo's, which are in the real world from different forms. 

    Now all the logo's are all ugly aligned, not nicely ordered and centered.
    You can find them on the homepage of the link I added.

    In the demo-content all the logo's are exactly the same width, heights and colors, so that's normal they are displayed in equilibrium and harmonious.


    Thanks !

  •  9,001
    Tahir replied

    Hey Again,

    You will have to use Image editing software like photoshop or such and prepare the logos by pasting them in a standard frame with transparency so they look aligned . 

    Be.st 


    ThemeNectar Support Team 

  •  2
    Omws replied

    Hi,

    That is not something a regular "non tech" client can do.

    There should be a css/js possibility ? Otherwise this is client-unfriendly.

    Can the images be embedded in a "div" with a "background-image" which has "background-size" as "cover" ?

    I'm just thinking out loud, but I don't see the point of  buying a theme, when my cliĆ«nt has to edit all his logo's in photoshop, while this should be technically possible to automate this.

  •  9,001
    Tahir replied

    Hey Again,

    Here is a CSS hack . 

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    body .clients > div {
        top: 50% !important;
        position: relative ;
    }
    body .clients > div img {
        transform: translateY(-50%);
    }

    Thanks


    ThemeNectar Support Team 

  •  2
    Omws replied

    WOW Tahir ! Such elegant and effective solution !

    Works like a charm :)


    THANKS