• Resolved lewis

    (@wkrstr0075)


    is it possible to reduce the size [width] of the bold outside border of this theme ?

Viewing 2 replies - 1 through 2 (of 2 total)
  • There doesn’t seem to be a border style applied. But there is a box shadow applied.

    @media screen and (min-width: 960px){
        box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
    
    }

    You can change the box shadow using the first 3 numbers The first value is horizontal shadow which is set to 0 the next value is Vertical shadow which is set to 2px and the 3rd value is the blur.

    You can change the shadow to something like this

    @media screen and (min-width: 960px){
        box-shadow: 0 1px 2px rgba(100, 100, 100, 0.3);
    
    }

    which would make the shadow thinner and less blurred.

    Thread Starter lewis

    (@wkrstr0075)

    speedy reply and most helpful

    thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Kool theme outer border’ is closed to new replies.