Is there a CSS way to apply a grid to TW’s native image editor?
It would help if it could!
Any thoughts?
TT
Is there a CSS way to apply a grid to TW’s native image editor?
It would help if it could!
Any thoughts?
TT
UPDATE:
I solved the issue via a browser extension.
This thread can be ignored.
can you share it l, just for completeness?
it could but
for the lack of mention which browser extension ?
( my guess is tampermonkey or the like)
fwiw ( tofuture forum searchers hopefully clicking this title)
.https://stackoverflow.com/questions/4191260/drawing-a-grid-using-css
this works for the page body
<style>
body { box-sizing:border-box; margin:0; height:100%; width:100%; background-size:100px 100px;
background-image: repeating-linear-gradient(0deg, transparent, transparent 99px, #ccc 99px, #ccc 100px),
repeating-linear-gradient(-90deg, transparent, transparent 99px, #ccc 99px, #ccc 100px);
}
</style>
id guess it just a case of picking some other css-class to add it to the desired element !
( which i guess you all ready found if you got it working some other way )
Ah! Thanks for that! I’ll try it over next few days.
TT