Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #412329

    Is it possible to easily add a border of any thickness and color to the top and bottom of a full width color section? Css?

    Thx in advance.

    #412333

    Hey fgrippe!

    Please add following code to Quick CSS and adjust as needed

    .avia-section {
      border: 3px solid red!important;
      border-right: none!important;
      border-left: none!important;
    }

    Best regards,
    Yigit

    #412336

    Thx Yigit.

    But will that change all the color sections? Can i apply this to individual color sections?

    #412339

    Hey!

    Yes, you can give your Color Section element a unique ID – http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png
    and change your code to following one

    #your-custom-id {
      border: 3px solid red!important;
      border-right: none!important;
      border-left: none!important;
    }

    Best regards,
    Yigit

    #412407

    Ok. Not working, but i am probably not doing this correctly.

    I added the custom css:

    #test {
    border: 3px solid red!important;
    border-right: none!important;
    border-left: none!important;
    }

    So, in the controls of the “color section” there is a field at the bottom that says “For Developers: Section ID
    Apply a custom ID Attribute to the section, so you can apply a unique style via CSS. ”

    Would i put #test or test or something else in the field to make it work correctly?

    Do i select “no border styling” for the other pull down menus that address the border?

    #412418

    Hi!

    You should put “test” in there and your code should work fine. If it does not, please post the link to your page and point out the color section

    Regards,
    Yigit

    #412428
    This reply has been marked as private.
    #412429

    Hi!

    Following code should work

    #mmadness {
      border: 3px solid red!important;
      border-left: none!important;
      border-right: none!important;
    }

    If it does not, please create a temporary admin login and post it here privately so we can look into it

    Regards,
    Yigit

    #412436
    This reply has been marked as private.
    #412441

    Hi!

    Please review your website now. Selector was #test instead of #mmadness in Quick CSS field. I changed it and it worked fine

    Best regards,
    Yigit

    #412442
    This reply has been marked as private.
Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Border thickness and color on color sections’ is closed to new replies.