Close

Hide the Column in footer

tamchu
8 years ago
#9917 Quote
Avatar
  • 26
Dear Sir:

How I can hidden the column in the footer, or I don't want to use the "MY ACCOUNT" and "Customer info" in the footer, any method I can disable those Column by entering the CUSTOMER HEAD STYLE, as I'm using a mulpitle Licences and don't want to border other cart!
nikola.dragiev
8 years ago
#9927 Quote
Avatar
  • Moderator
  • 154
Hello,

You can add this css code in your Custom Head Styles textfield located in your nopCommerce administration -> Plugins -> Nop Alicante Theme -> Settings:

@media all and (min-width: 981px) {
  
  .footer-block {
    width: 30.666%;
  }
  .footer-block:nth-child(3){
    display: none;
  }

}

Best regards,
Nikola Dragiev
Nop-Templates.com
tamchu
8 years ago
#9928 Quote
Avatar
  • 26
Dear Sir:

This is a really great help, thanks so so much, one more questions, how can I get the whole roll to be center? now the alignment go to left!

Best regards,
nikola.dragiev
8 years ago
#9980 Quote
Avatar
  • Moderator
  • 154
Hello,

You can try adding this css code right after the first one I provided you with:

.footer-block {
  text-align: center;
}
.footer-block li a,
.footer-block-first li{
  display: inline-block;
}
.footer-block-first li{
  margin: 0 40px;
}
Best regards,
Nikola Dragiev
Nop-Templates.com