Align Action Bar in center instead on the left

Hi guys

I want to align the action bar to the center instead on the left on my website webdesign-dr.ch.

How can I archive that?

Cheers, Dominik

Comments

  • Hi,
    your website seems to be under construction?
    thanks
  • Yes exactely, but you can still see the header as it will be on the final page.

    I'd like to have the telephone/e-mail on top in the middle instead of the same width as the logo underneath.

    Is there any code I can insert into my own CSS to align the action bar at the center?

    I used this code already to make the action bar appear in mobile and there it is in the middle.

    @media only screen and (max-width: 767px) {
        .mobile-header-mini #Action_bar { display: block !important; }
        #Action_bar .contact_details li.slogan { display: block !important; }
    }
  • Try this custom css
    .contact_details {
    width:100% !important;
    text-align:center !important;
    }
  • Thanks, it worked. :)
Sign In or Register to comment.