Removing a line under where invoices usually show

This topic contains 6 replies, has 2 voices, and was last updated by  Kor 7 years, 12 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #196403

    Dotty Directory
    Full Member
    Post count: 254

    Hi Geodirectory!

    I have hidden the My invoices button and icon as we are only currently using free packages just to make listings expire.

    I have used the css code to hide the text and icon of shopping trolley.

    
    
    .gd-invoice-link {
    visibility: hidden;
    }
    .fa-shopping-cart {
      visibility: hidden;
    }

    But i have an unsightly line left which i cant find the correct code for.

    Screenshot attached.

    Thanks

    #196405

    Dotty Directory
    Full Member
    Post count: 254
    This reply has been marked as private.
    #196423

    Kor
    Moderator
    Post count: 16516

    Hi Dotty,

    Try using the custom CSS code below and see if it works.

    
    
    ul.geodir-loginbox-list li:nth-child(3n+3) {  
      display:none;
    }

    Thanks!

    #196425

    Dotty Directory
    Full Member
    Post count: 254

    Hi Kor,

    Unfortunately that made the wrong part disappear.

    The last “line” has disappeared but so has “Edit Listings”

    Thanks

    #196428

    Kor
    Moderator
    Post count: 16516

    Hi Dotty,

    Sorry about that, I’ve just inserted the custom CSS code below for your convenience. Let us know how it goes.

    
    
    ul.geodir-loginbox-list li:nth-child(4n+4) {
        display: none;
    }

    Thanks!

    #196432

    Dotty Directory
    Full Member
    Post count: 254

    Fantastic thanks Kor!

    So if 3n+3 is edit listing
    is 2n+2 add listing?

    #196569

    Kor
    Moderator
    Post count: 16516

    Hi Dotty,

    Yep, that’s how it works.

    Thanks!

Viewing 7 posts - 1 through 7 (of 7 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket