yettti

yettti

14p

10 comments posted · 0 followers · following 0

103 weeks ago @ BJET Design - Font Controller - Word... · 0 replies · +1 points

Currently there is no UI to do that, changing the images requires you to upload new images into he plugins folder and change the image tags that are written in font-controller.php

I might add an easer way to do that in in the next version... its definitely on the cards

106 weeks ago @ BJET Design - Font Controller - Word... · 0 replies · +1 points

Yes, if you want to add it into a template file place <?php if (functionexists('fontControllerplace')) : fontController_place('smooth'); ?>

or if you want to include it in a post use [fontcontroller] or [fontcontroller=small]

109 weeks ago @ BJET Design - VB Webcam Class · 0 replies · +1 points

http://twitter.com/yettti
username:yettti
;)

115 weeks ago @ BJET Design - VB Webcam Class · 0 replies · +1 points

fixed

116 weeks ago @ BJET Design - Font Controller - Word... · 1 reply · +1 points

What you would want to do is change the plug-in's jQuery back-end.
You'll have to change the ' jQuery("body").css("font-size") '. the '"body" part is the CSS selector that is changed. Example

jQuery("#id").css("font-size")

OR

jQuery(".class").css("font-size")

... let me know if your need more help

119 weeks ago @ BJET Design - Font Controller - Word... · 0 replies · +1 points

I don't know if you give me your site URL i can take a look from the outside and see if i can see any problems

119 weeks ago @ BJET Design - Font Controller - Word... · 0 replies · +1 points

soz, my problem i wrote the php wrong ( sorta used the pascal syntax :S)
for now use
<?php if (function_exists('fontController_place')) fontController_place('smooth'); ?>

119 weeks ago @ BJET Design - Font Controller - Word... · 0 replies · +1 points

Update to version 2 and look in the faq, there is a how to there ;)

119 weeks ago @ BJET Design - Font Controller - Word... · 0 replies · +1 points

You can place the controller in your theme by using
<?php if (functionexists('fontControllerplace')) : fontController_place('smooth'); ?>

+ remember to update to version 2 for shortcode support

119 weeks ago @ BJET Design - Font Controller - Word... · 1 reply · +1 points

how about if i modified it so that when you place something like %fontcontroller% into the header.php file, or any other template file for that matter it would place the font controller there?