Tagged: 

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #810018

    I need help. I can not remove UPPERCASE from my ICONBOX TITLE.
    I use CSS CLASS with this code below.

    /*ICON BOX TITULO*/
    .iconboxtit {
    font-family: ‘Unna’, ‘Lora’, Arial, sans-serif;
    letter-spacing: 0.7px;
    text-transform: normal;
    text-align: center;
    line-height: 175%;
    font-size: 15px;
    color: #885212;
    }

    How do I control content text by CSS? I noticed that CSS CLASS changes title and content together. The title is different from the content. How to control separately? Notice that all the initial letters of the text are in the upper case.

    link

    #810057

    Hey mleite1,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    .iconbox .iconbox_content .iconbox_content_title {
        text-transform: none;
    }

    Content can’t be controlled by css, you need to change it in wordpress editor or avia layout builder, also css class doesn’t change title and content. The code I gave should make the letters in the iconbox title not be automatically changed to upper case.

    Best regards,
    Nikko

    #810375

    Its ok Nikko.

    Tks

    #810421

    Hi,

    Let us know if you need more assistance regarding this topic or if we can close it :)

    Best regards,
    Nikko

    #810423

    Nikko, so I slightly decrease the size of the Iconbox icon, how do I?

    #810471

    Hi,

    I’m not sure I understand properly the question, but I think you want to decrease the size of the iconbox, try adding this css code in Quick CSS:

    #top .iconbox.av-no-box .iconbox_icon {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 20px;
    }

    Just adjust the values as you see fit. Hope this helps :)

    Best regards,
    Nikko

    #810578

    Nikko, the icon box option has 3 elements.

    1 – The icon
    2 – The title below the icon
    3 – Text content below the title

    Option 1 you just helped me. The code worked.
    Option 2 I use CSS CLASS
    How do I control option 3 by CSS CUSTOM?

    #810999

    Is the ICON BOX CUSTOM field to control only the title? I use this code and do not control color, and the letter is always bold.

    CSS CLASS NAME: iconboxtit

    CODE
    /*ICON BOX TITLE*/
    .iconboxtit {
    font-family: ‘Unna’, ‘Lora’, Arial, sans-serif;
    letter-spacing: 0.1px;
    text-transform: normal;
    text-align: center;
    line-height: 175%;
    font-size: 26px;
    color: #885212;
    }
    ANOTHER QUESTION
    How do you control CONTENT through CSS?

    #811937

    Hi,

    You can try these:
    2 – The title below the icon

    #top .iconbox.av-no-box .iconbox_content_title {
        font-weight: normal !important;
        font-size: 22px;
    }

    3 – Text content below the title

    #top .iconbox.av-no-box .iconbox_content_container p {
        font-size: 14px;
    }

    Also you can’t control content via css because css controls only the style.

    Best regards,
    Nikko

    #812801

    Nikko, tks.

    The second code is not work.

    #top .iconbox.av-no-box .iconbox_content_title {
    font-weight: normal !important;
    font-size: 42px;
    }

    What can it be?

    #812820

    Hi,

    I think it’s not working because of the code above it is wrong:

    /*MAPA TEXT BOX*/
    .avia-google-map-container .gm-style-iw p {
     font-family: 'Unna', 'Lora', Arial, sans-serif;
        letter-spacing: 0.1px;
        text-align: left;
        line-height: 145%;
        font-size: 14px;
        color: #42423e;
    }
     line-height: 175%;
        color: #bd2828;
    }

    Please fix it and that should work :)

    Best regards,
    Nikko

    #812852

    You’re right Nikko. I took it off and it worked.

    Grateful. You are 10.

    #812909

    Hi,

    Glad that we could help, thanks for your kind words and for using Enfold :)

    Best regards,
    Nikko

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