Jump to content

[SOLVED] Payment modules show in one row instead column


Recommended Posts

hello

 

it's possible, but only with css modifications.

global.css line 1174

there is a code like:

.payment_module {
position: relative;
padding-top: 20px;
border-top: 1px dotted #ccc;
text-transform: uppercase;
}

add there width, display:inline-block; and float:left param:

display: inline-block;
float: left;
width: 200px;

add also somewhere this:

.cart_navigation {clear:both;overflow:hidden;}

effect:

gxz2hnt.png

Link to comment
Share on other sites

  • 2 years later...
×
×
  • Create New...