So I have the below code that is working great for me!
$("#custom_logo").css("marginLeft", $(".rt-container:first").css("marginLeft"));
But my problem is that I want to be able to add 15 more pixels to the margin but the below code does not work at all.
$("#custom_logo").css("marginLeft", $(".rt-container:first").css("marginLeft")+15);
I am presuming that is it because the output will be somthing like '260px15' rather than '275px' which is what I am aiming for. I was wondering if there was a way to do this simply that I am over looking?
"15px"+15isn't pretty.