0

I am trying to fixed the menu in the template, but every time when I use the fixed function in the menu, an error occurs because the menu is misplaced to the right off the page.

The example is here: http://jsfiddle.net/ecram/ddbvg532/1/

Reviewing the code and I think the problem is on the Grid.

<div class="ui inverted page grid masthead segment">
    <div class="column">
      <div class="ui fixed inverted pointing menu">
        <div class="header item"><i class="home icon"></i> Principal
        </div>
        <div class="right menu">
          <a class="item"> About</a>
          <a class="item"> People</a>
          <a class="item"> Projects</a>
        </div></div></div>
</div>
ecram
  • 31
  • 7
  • Hi, I resolve the problem using:
    Content
    – ecram Sep 05 '14 at 16:33

1 Answers1

0

I resolve the problem using:

<style type="text/css">.fijo {position:fixed !important; top:0px; z-index:10 !important} </style>

<div class="fijo">
   Content
</div>
ecram
  • 31
  • 7