Hi, Thank you for your wonderful module.
Just a small theme question please.
I would like to remove the 'status' 'time ago' just below the 'Save' button as I'm not using the javascript to open and close.
What would I remove in the module to make that go away ... and if possible, how can I move the 'Save' button to be next to the form.
Have tried, but just don't get it.
Most appreciate any reply.
Lilian
Comments
Comment #1
icecreamyou commentedTo remove the [status][time] text use CSS to set
div.facebook_status_status { display: none; }. (I should probably get rid of that text by default with JS off, huh.)To move the save button next to the form use CSS to set
div#facebook-status-update-form div#edit-name-wrapper { float: left; }. You may have to do more tweaking to get everything nicely aligned, and it may not look like it worked if you don't have enough room for the Save button on the same line.Comment #2
liliplanet commentedTremendous, thank you! Beautiful ..