Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Adding text to a function… Re: Adding text to a function…

#83910
stevendeeds
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; }