Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #511246

    Hi.

    Can you please tell me quick css for changing the the font weight, size and make it lower case for the element titles on icon lists..
    I would need to do it on a page by page basis not across the whole site.

    EG: Change these titles on page xxxxx

    Many thanks in advance

    #511299

    Hi!

    Please post a link to the page in question.

    Best regards,
    Josue

    #511349

    Here is a page i would like to change it on, however we use the icon lists on many pages..

    #511369

    Hey!

    Use the following code:

    #top .iconlist_title {
        font-weight: 100;
        font-size: 14px;
        text-transform: none;
    }

    On a specific page:

    #top.page-id-2 .iconlist_title {
        font-weight: 100;
        font-size: 14px;
        text-transform: none;
    }

    Regards,
    Josue

    #511391

    This code works globally:

    #top .iconlist_title {
    font-weight: 100;
    font-size: 14px;
    text-transform: none;
    }

    But when i use this nothing changes on that page (26876)

    #top.page-id-26876 .iconlist_title {
    font-weight: 100;
    font-size: 14px;
    text-transform: none;
    }

    —————————————————————————-

    Can we also add a colour change to that code?

    #511398

    Hey!

    You can turn on custom CSS field for ALB elements – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and give your element a custom class and then change the code to following one

    .your-custom-class .iconlist_title {
    font-weight: 100;
    font-size: 14px;
    text-transform: none;
    }

    You can go to Colors tab on your element to change colors

    Best regards,
    Yigit

    #511426

    Sorry thats beyond me this is working fine

    #top .iconlist_title {
    font-weight: 100;
    font-size: 14px;
    text-transform: none;
    }

    But this was not

    #top.page-id-26876 .iconlist_title {
    font-weight: 100;
    font-size: 14px;
    text-transform: none;
    }

    #511430

    Hey!

    Following should

    .page-id-26876 .iconlist_title {
    font-weight: 100;
    font-size: 14px;
    text-transform: none;
    }

    P.S.: If you do not mind posting admin credentials, we can make the changes for you

    Best regards,
    Yigit

    #511849

    Actually both these work! ,

    #top.page-id-26876 .iconlist_title {
    font-weight: 100;
    font-size: 14px;
    text-transform: none;
    }

    .page-id-26876 .iconlist_title {
    font-weight: 100;
    font-size: 14px;
    text-transform: none;
    }

    I was targeting the wrong page number and so did not see it change when i checked the page i wanted.

    OOPS! , Thanks though.

    Is there a preferred One to use from the above or does it not really matter?

    you can go to Colors tab on your element to change colors

    Its the” icon list title” colour i want to change on the page, i see you can change the icon colours and have done that already.. Is there a extra bit of code i can add to this to target the icon list title colour?

    page-id-26876 .iconlist_title {
    font-weight: 100;
    font-size: 14px;
    text-transform: none;
    }

    #511853

    Try:

    page-id-26876 .iconlist_title {
    font-weight: 100;
    font-size: 14px;
    text-transform: none;
    color: red;
    }

    Best regards,
    Josue

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