Tagged: ,

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #1000993

    I want to change the thickness and color of only the outerborder of catalogue. Is this possible and how?

    Thanks.

    Mark

    #1000999

    Hey Multispace,

    Please provide a link to the site/page in question so we can look into this issue further.

    Best regards,
    Jordan Shannon

    #1001123
    This reply has been marked as private.
    #1001366

    Hi,

    Please add:

    .av-catalogue-list li {
    border: none;
    }

    Let us know what else we can do.

    Best regards,
    Basilis

    #1001396

    Hi Basilis,
    That removes all borders of the table.
    I want the cell-borders to remain the color as it is and only the outer-border to be in a different color and possibly thickness.

    Regards,
    Mark

    #1001600

    Hi Mark,

    Could you please attach a mockup of what you’re trying to achieve?

    Best regards,
    Victoria

    #1001605
    This reply has been marked as private.
    #1001614

    Hi Mark,

    Thank you for that :)

    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

    
    .av-catalogue-list {
        border: 2px red solid;
    }
    .av-catalogue-list li:first-child {
        border-top: 2px red solid;
    }
    

    You can play with the color and the thickness to achieve the looks that you need.

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1001633

    Thanks Victoria,

    I had to adjust it a bit to also get rid of the original cell-borders in order not to get 2 borders.
    Now it works :-)

    .av-catalogue-list li:first-child {
       border-top: 0px;
    }
    
    .av-catalogue-list li {
    	background: #ffdf8f;
    border: 1px solid #465fea;
    	border-bottom-width: 0px;
    border-left-width: 0px;
    border-right-width: 0px;
    }
    
    .av-catalogue-list {
      border: 3px solid #ff6f00!important;
    }
    

    Mark

    #1001914

    Hi Mark,

    Glad you got it working for you! :)

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1001934

    I’m good!
    Topic can be closed :-)

    Mark

    #1001937

    Hi,

    If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘How to change color and thickness of only the outerborder of catalogue?’ is closed to new replies.