• Bottom Border Is not Showing!
    how to fix this issue?

    i am using this css codes:

    article {
      border: 2px dashed #000000;
      border-radius:10px;
      padding: 20px;
      padding-right: 0px;
      background-color: #Ffffff;
      box-shadow: none;
    }
    
    div.folding-button {
      position: relative;
      left: 680px;
      Bottom: 100px;
      margin-top: -80px;
    }
    
    @media screen and (max-width: 600px){
    div.folding-button {
            position: relative;
            left: 0%;
            top: 1000px:
          }
    }
    • This topic was modified 3 years, 7 months ago by Aarush.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Your bottom border using the article selector isn’t working because you have a more specific selector .latestPost.coupon with a border value of none — and the more specific selector will always win the day.

    A quick hack to fix this is to add !important to your border code.

Viewing 1 replies (of 1 total)
  • The topic ‘Bottom Border Is not Showing’ is closed to new replies.