I'm trying to center the menu text links and not having much luck. I tried changing the padding but only the top line moves. Can some please point me in the right direction?

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Shepherd348 created an issue. See original summary.

devshi.addweb’s picture

Please put below code in your custom css file.

#header-menu ul.menu {
  margin:0 -15px;
  width: calc(100% + 30px);
  width: -webkit-calc(100% + 30px);
  width: -moz-calc(100% + 30px);
}
#header-menu ul.menu li a {
  padding:10px 15px;
}
#header-menu ul.menu li.first a { padding-left:15px; }

#header-menu ul.menu li.last a { padding-right:15px; }

Let me know incase of any query/concern regarding the same.

devshi.addweb’s picture

Status: Active » Needs review
FileSize
1.29 KB

PFA patch for the same.

riddhi.addweb’s picture

FileSize
332.75 KB
370.47 KB

Hi,

Thanks, Patch Works for me. I've attached the Screenshots for the same.

riddhi.addweb’s picture

Status: Needs review » Reviewed & tested by the community