Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #1010845

    Hi Enfold Team
    I know this has been targeted before, but it doesn’t work for me to go e.g.:

    .main_color.iconbox_top .iconbox_content {
    background-image: url(‘imagepath.jpg’);
    }

    Any ideas…?
    Thanks,
    Stefan

    #1010928

    Hey Stefan,

    Try this:

    .iconbox_content {
    background-image: url("https://dev.plp-group.com/wp-content/uploads/2018/09/arrowbox.png")!important;
    }

    Best regards,
    Jordan Shannon

    #1011032

    Thanks Jordan, getting closer :-)

    .plp-iconbox {
    position: relative;
    background-image: url('https://dev.plp-group.com/wp-content/uploads/2018/09/arrowbox.png')!important;
      height: 181px; 
      background-position: center; 
      background-repeat: no-repeat;
      background-size: cover;
    }

    …this will set the image right sizing the box after the background image. As you can see I used a custom class…

    I need to get the Icons ‘in the box’ and I need to get rid of the color (#f8f8f8) as you can see in the example result… I tried several background css tricks, but without success…
    Would you know how to accomplish that please …?

    #1011040

    Hi,
    Try this in quick css:

    .main_color.iconbox_top .iconbox_content {
    background-color: transparent!important;
    box-shadow:none!important;
    }

    Best regards,
    Jordan Shannon

    #1011043

    Excellent!
    That solved the color issue.

    How would I get the Icons ‘in the box’ as in the example image linked below. I need the icons as well as the text roughly 30 px down so they are in the box. Could you solve this as well?

    #1011248

    Hi beenee,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    #after_full_slider_1 .iconbox_top .iconbox_icon {
        top: 15px;
    }
    #after_full_slider_1 .iconbox_top .iconbox_content {
        padding: 80px 20px 20px 20px;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1011817

    Hi Victoria,
    Thanks a lot!! Splendit:-) This works perfectly as it should on http://dev.plp-group.com

    I’m not shure why this doesn’t apply on the other side (It’s all in the quicksss: http://dev.plp-group.com/about/
    Also on that page I tried to ‘hide’ the icons.
    .plp_noiconbox a.iconbox_icon { display: none !important; } …but it doesn’t work :-)

    Any ideas?
    best
    Stefan

    #1011879

    Hi Stefan,

    On the about page you want to hide icons or move them down?

    Best regards,
    Victoria

    #1011882

    I’d like to hide them…

    #1011913

    Hi Stefan,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    #top.page-id-234 .iconbox_top .iconbox_icon {
      display: none;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1011932

    OK this works well…! Thanks!
    if I’d like to do the same for yet another page, how would be the syntax?

    
    #top.page-id-234 .iconbox_top .iconbox_icon {
      display: none;
    }
    #top.page-id-494 iconbox_top .iconbox_icon {
      display: none;
    }

    …doesn’t work! In this example it works only for page-id-234

    #1011965

    Hi beenee,

    Please share the link to the page.

    Best regards,
    Victoria

    #1012033

    Sorry, here it is:
    initial page:
    dev.plp-group.com/about

    I’d like to hide the logo here as well:
    dev.plp-group.com/about-m
    dev.plp-group.com/about-v
    dev.plp-group.com/about-p

    #1012594

    Hi,

    You can add this css code.

    .page-id-494 .iconbox_top .iconbox_icon, .page-id-234 .iconbox_top .iconbox_icon, .page-id-502 .iconbox_top .iconbox_icon, .page-id-510 .iconbox_top .iconbox_icon {
        display: none;
    }

    Best regards,
    Ismael

Viewing 14 posts - 1 through 14 (of 14 total)
  • You must be logged in to reply to this topic.