Home › Forums › Back End › Adding text to a function… › Re: Adding text to a function…
July 25, 2011 at 12:12 pm
#83910
Member
OH! well then you just need to style your element. Remember, php reads your code, and outputs as plain html! so, if you want to style the element, just make that p tag a p class=”click”..
so like…
echo '' . 'Click Image To Enlarge' . '
';
and then your css would be something like..
.click {float: left; }