I am trying to change the width of the Item column and Description Column in invoices and estimates.
Can this be done?
I can’t do it with your CSS editing box but is it possible to help me make those changes or add them for everyone else?
Also when I add in some padding to 'item when I made it left justified it is moving the description heading along as well. I don’t want that to happen, Just want the item to move and noting else.
Thank you
Each column cell has a class you can manipulate for the header and body:
.thItems2, .tdItems2{
width:100px !important;
}
You’d probably need to individually set the width for all visible cells in each column otherwise the others will likely distort. Use F12 to inspect the elements so you can find the class names to manipulate. Unfortunately this is more advanced CSS so I’d recommend getting a web developer to look at it.