I want to move column 3 a few pixels to the right.
https://subeta.net/petinfo.php?petid=20564
I tried -
{position:absolute; top:108px; right:5px;}
It moved column 3 to the far right of the page
If you define the position as "right: 5px;" the column will be moved from the right side of the screen towards the left, so what you did with that code is say that you want the element to be 5px away from the right side of the screen. Try increasing the number of pixels, or just use margin-left:
{ margin-left: 5px; }
If you have to use absolute positioning, I'd recommend positioning elements from the same side, so everything from the top and the left. That will also prevent problems that may occur on devices with different screen resolutions.