css works in Firefox, not in Chrome -


i adjusted width of div via css. works in firefox, not in chrome.

here's code:

.the_content {     padding-left: 60px !important;     padding-right: 40px !important; }  .the_content {     padding-left: 60px !important;     padding-right: 40px !important; }  .the_content.post.type-post.hentry.excerpt.clearfix {     padding-left: 60px;     padding-right: 40px; } 

am missing chrome isn't picking up?

thanks,

provide html more clarity on issue. repeated css classes in multiple places.

try this:

.the_content  {  padding-left: 60px !important;  padding-right: 40px !important;  }   .the_content.post.type-post.hentry.excerpt.clearfix {   padding-left: 60px;   padding-right: 40px;  } 

Comments