[Resolved] border around current page

Home Forums Support [Resolved] border around current page

Home Forums Support border around current page

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1314676
    Lukasz

    hi everyone,
    I would like to carry out the border around current page. I mean a number which shows a current page. My CSS code looks like:

    .nav-links {
    	text-align: center
    }
    
    .page-numbers {
    	margin: 5px;
    }
    
    .page-numbers.current {
        background-color: blue;
    	color: white
    }

    I am enclosing the link to the image what I am saying.
    https://ibb.co/Vj2MS4W

    #1314699
    Lukasz

    Ok, I’ve found the simply solution, maybe someone will be using it

    .nav-links {
    	text-align: center
    }
    
    .page-numbers {
    	margin: 4px;
    }
    
    .page-numbers.current {
      padding-left: 4px;
    	padding-right: 4px;
    	border-bottom: 1px solid;
    }
    
    #1314768
    Leo
    Staff
    Customer Support

    GLad you’ve figured out 🙂

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