what does this do

Permalink
am viewing a theme and have a rough idea what the piece of code does but would like to know for sure:

<?php
if ($c->isEditMode()) {
?>
<style>
#logintxtblank
{
overflow:visible;
}
</style>
<?php
}
?>

 
LucasAnderson replied on at Permalink Best Answer Reply
LucasAnderson
That piece of code is checking if the page is in Edit Mode, and if it is, it applies a style to the element id 'logintxtblank' (most likely a form input) telling it to show text that is inputted larger than the input box size.

Without actually knowing what theme it is, I can't say for sure why that's there, but that's what it does.
kappi replied on at Permalink Reply
Thanks very much I thought so too, most people don't seem to use it though. I'll experiment.

cheers again