11/21/2016 at 12:13 pm
#400539
Keymaster
@ bebe
Well, it appears there is a it of custom CSS being used to change the layout of the Default Entry Card template.
The right side is being floated left and the left side being floated right. That’s fine as that pretty much simply just swaps the default floats.
What you’ll need to do of tweak your custom CSS so you are not floating the left side all the way to the right.
Probably the easiest tweak is to apply a max-width to the list body:
div#cn-list-body {
max-width: 600px;
}
And then apply a min-width to the flat right:
.cn-left {
float: right!important;
min-width: 47%;
}
You’ll like have to tweak further to make it even more to your liking.
Hope this helps!
