Hi
I have a set of columns that are not properly aligned (probably due to a custom CSS code added earlier?)
Please check the following sshot: http://dns.d.pr/1jxGb/5zhfIFPw
2 columns has a gap at the right and not being aligned to the full width.
3 columns (as the bottom line) is perfectly aligned.
Would like the 2 columns aligned to the right as well. Webpage is in PVT.
Thank you
Hi sitesme!
Please add following code to Quick CSS
div .av_one_half {
width: 49%;
}
Regards,
Yigit
Thank you Yigit,
I have already a similar code to decrease the gaps between columns:
div .av_one_half {
margin-left: 2%;
width: 48%;
}
I think I just found the solution by changing it to:
div .av_one_half {
margin-left: 2%;
width: 49%;
}
This will cause no harm, right?