Okay
  Public Ticket #2966019
Changing Client Settings
Closed

Comments

  •  8
    benhasler started the conversation

    Hi there, is there a way i can change the clients per row settings from the default ones? it only has 7 or 12 as options but i would like 8 or 10? 

    thanks so much 

  • [deleted] replied

    Hi Ben,

    Hmm maybe that is possible only if we add a CSS code for you that makes this change.

    Please write the URL of this exact page and I will see if I can do something.

    Thanks!

  •  8
    benhasler replied

    at the moment its just used here https://hqglobalsearch.com/contact-3/

    but i will want to use it on other pages also. 

  • [deleted] replied

    Your site is on coming soon mode, please remove coming soon mode or send me your WordPress credentials in a private reply.

    Thanks!

  •   benhasler replied privately
  • [deleted] replied

    Hi Ben,

    To have 8 logos per row you can add this CSS code to your Custom CSS area:

    .logos-holder .client-logos-col.col-1 {
        width: 12.5%;
    }

    if you want 10 per row you can add this CSS code:

    .logos-holder .client-logos-col.col-1 {
        width: 10%;
    }

    if for any reason your CSS code doesn't reflect in your website, you can add !important rule.

    See example:

    .logos-holder .client-logos-col.col-1 {
        width: 12.5% !important;
    }

    Have a nice day!

  •  8
    benhasler replied

    this works perfectly thanks. what figure would i enter if i wanted rows on 9?

    also how do i change the colour of bullet points to #2ed03c (ie a different colour from the text). 

    thanks so much. 

  • [deleted] replied

    Hi Ben,

    100/9=11.111%. So you can add this CSS code:

    .logos-holder .client-logos-col.col-1 {
        width: 11.111% !important;
    }

    And for the last question:

    Please add the code below to your Custom CSS area:

    .wpb_wrapper ul {
        list-style: none;
    }
    .wpb_wrapper ul li:before {
        content: "\2022";
        color: red;
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }

    Have a nice day!

  •  8
    benhasler replied

    hi there thats great but it has all added bullet points to the footer for some reason?

    see attached?


  • [deleted] replied

    Hi Ben,

    Please remove the previous CSS code and change it with this one:

    .wpb_wrapper ul {
        list-style: none;
    }
    .wpb_wrapper ul li:before {
        content: "\2022";
        color: red;
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }

    Thanks!

  •  8
    benhasler replied

    awesome thanks. 

    is there a way i can change the background colour, and footer colour on one specific page?

    thanks so much. 

    ben


  • [deleted] replied

    Hi Ben,

    Sure, you can add those CSS codes in the Parameters and Options > Custom CSS area of that page.

    Example:

    .wrapper {
        background: cyan;
    }
    footer.site-footer {
        background-color: cyan;
    }

    See video: https://d.pr/v/BuyTFz

    Have a nice day!

  •  8
    benhasler replied

    i am struggling to get this to work? i have added the code in parameters and options but nothing is happening? 

    screen grab attached of desired colours but looks the same?

  • [deleted] replied

    Hi Ben,

    Please try adding the !important rule it should work.

    See example:

    .wrapper {
        background: cyan !important;
    }
    footer.site-footer {
        background-color: cyan !important;
    }

    Have a nice day!

  •  8
    benhasler replied

    thats perfect thats fixed it. 

    just one other question, there seems to be an area thats still the old colour below the footer on bigger screens that hasn't changed colour? 

    how do i effect that too?

    thanks,
    ben

  • [deleted] replied

    Hi Ben,

    I understand, please add this CSS code:

    body {
        background: cyan !important;
    }

    Have a nice day!

  •  8
    benhasler replied

    perfect, thanks so much for your help


  • [deleted] replied

    Happy to hear thatsmile.png

    Have a great day!

    I will set this ticket as solved from here.