html - Center header inside parent -


i use bootstrap , joomla.

i have new design requires div , h2, 1920 pixels wide , have centered text. have done is:

    .page-header {     background-color:#3c4547;     width:1920px;     top:0px !important;     position:relative;     margin-top:0px;     display:block;     padding:20px 0px 25px 0px;     z-index:999;     left:-385px; }  .page-header h2 {     color: @white;     font-size:36px;     font-weight:400;    margin-left: auto;     margin-right: auto;      text-align: center; } 

the wrapper 1600 pixels wide or something, thats why cheat negative margin.

but doesnt center text right on resize - need responsive aswell. suggestions?

this html code , cannot edit it:

<div class="page-header"><h2 itemprop="name">header text</h2></div> 

it has parents.

this basicly want , have, doesnt center on responsive: enter image description here . , how looks just 100% width:

enter image description here

for lion , others, explain whole code:

<div class="parent"> <div class="page-header> <h2>testest</h2> </div> </div>  .parent { width:1000px; }  .page-header { width:100%; background:red; }  .h2 { color: #ffffff; text-align:center; } 

 ** try use code, hope code :)**  div h2 {     max-width: 1920px;     width: 100%;     height: auto;     display: flex;     justify-content: center; } 

Comments

Popular posts from this blog

toolbar - How to add link to user registration inside toobar in admin joomla 3 custom component -

linux - disk space limitation when creating war file -