Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Bootstrap Nav List

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #242495
    wolfgang1983
    Participant

    Hello.

    I have 2 problems I am trying to solve with my sidebar

    1: On my sidebar each the first and second level sub menu links should be slightly to the left but can not work it out on how to do it with the bootstrap nav

    2: Each li should have a border bottom but can not get all of them

    Any ideas here is codepen

    http://codepen.io/riwakawebsitedesigns/pen/BzNqMo

    #242498
    Atelierbram
    Participant

    Maybe try setting padding-left and border-bottom values on the links ISO list-items, like:

    .nav > li {
       /* border-bottom: 1px solid #585858; */
    }
    
    .nav > li > a {
       color: #C4C4C4;
       border-bottom: 1px solid #585858;
    }
    
    .nav > li > .accordion-heading,
    .nav > li > a[href$="dashboard"] {
      padding-left: 15px;
    }
    
    .nav > li > a {
      padding-left: 24px;
    }
    

    http://codepen.io/atelierbram/pen/EyjObM

    #242524
    I.m.learning
    Participant

    What is ISO?

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.