Having problem with bootstrap icon in Panel

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • bhavuksuthar
    New Member
    • Oct 2015
    • 1

    #1

    Having problem with bootstrap icon in Panel

    here is the link to the demo as you can see i can not position the button checkin when i use ghlyphicons
    but if i dont use glyphicons than it works fine

    http://jsfiddle.net/bhavuksuthar/Wc4xt/3024/
  • CSShunter
    New Member
    • Oct 2015
    • 5

    #2
    Hi bhavuksuthar,
    It's not the use of glyphicons, but it's a CSS positioning thingy.
    All glyphicons buttons have a {position: absolute}, that is they are absolute positioned in respect of the first level upwards that has a {position:relat ive}.
    Now no level above the buttons has a {position:relat ive}, so the "relative" is given to the <body> element (by default).
    Result: all buttons are stacked in the same place at the top of the page.
    But what you want is to connect each button to the respective panel accordion. Then you can give all panel titles the relative position:
    Code:
    #event-title h4{
        font-size: 14px;
        position: relative;
    }
    See updated fiddle:

    Comment

    Working...