Viewing 4 replies - 1 through 4 (of 4 total)
  • The footer shows correctly in Firefox. I believe the problem is with the ‘min-height: 100%;’ entry in default.css, #wrapper, near line 67. Try removing that line.

    If you want the breadcrumbs centered, add ‘text-align: center;’ under #bread, line 4 in user.css.

    Thread Starter fkaf

    (@fkaf)

    Thanks, the footer thing worked

    I dont want the breadcrump centered but the whole space to be as the menu. Now its speces to the left and right

    Any suggestions?

    Thread Starter fkaf

    (@fkaf)

    Any suggestions on the breadcrumb thing?
    how to i add a new “space” under the menu that is as wide as the menu?

    the div #main has a left/right padding of 10px which is restricting the breadcrumb nav;

    you could try to add negative margin left and right, and borders to #bread (not ideal, and might not work in all and older browsers):

    in user.css:

    #bread { background:#e9e9e9;
    	line-height:16px;
    
    margin-bottom:15px;
    	padding-left:5px;
    padding-top:2px;
    padding-bottom:2px;
    text-transform : uppercase;
    border-bottom:1px solid #bdbdbd;
    font-size:10px;
    color:#ed4230;
    
    margin-left:-11px;
    margin-right:-11px;
    border-left:1px solid #bdbdbd;
    border-right:1px solid #bdbdbd;
    
    }

    looks ok in firefox with develper add-on, not tested in other browsers.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘What`s causing the footer issues?’ is closed to new replies.