Well it won't because it is a frame and has it's own properties. You would need to add the css properties to the page or edit the html to match the wrapper.
Gizmo
Wizard
Registered: 01/10/00
Posts: 5287
Loc: Portland, OR, USA
btw, on the spot of using stylesheets; you could use an include statement and then adapt the pages to use smarty code; not entirely sure what you're working with or how feasable that would be as an option though...
badfrog
Power User
Registered: 03/05/07
Posts: 83
Loc: somewhere on the coast of Main...
I tried the literal tags, nothing happened...
if I post it like this,
Code:
{literal}
require_once('recaptchalib.php');
$publickey = "6LfiEQoAAAAAAH6y_Cyvb7Hze7W4zwdbgaui-5B7"; // you got this from the signup page
echo recaptcha_get_html($publickey);
{/literal}
Gizmo
Wizard
Registered: 01/10/00
Posts: 5287
Loc: Portland, OR, USA
I hope you're linking to the full path to the file and not assuming it'll just "grab" it... I'm not sure where you'd want all of your files if that's the case..
Gizmo
Wizard
Registered: 01/10/00
Posts: 5287
Loc: Portland, OR, USA
Well, yeh, that's differant... The UBB has a base path, the wrapper uses that, so if you just use a full path to the file you completely eliminate that as a possible problem...
By calling that page outside of the wrapper, you're going past the UBB and its base path...
I did find a couple of things on google for using recaptcha in smarty, basically putting your php code and making a variable for smarty then calling that variable in the smarty wrapped code...
badfrog
Power User
Registered: 03/05/07
Posts: 83
Loc: somewhere on the coast of Main...
so put that first bit in my php file, I can only assume they mean the reacaptcha.php file I put the other tag that they said went in the TPL file in my wrapped file.. still nothing.
I have tried the relative and absolute path, I have put the recaptcha.php in my root dir, my threads DIR and the wrapper DIR...