Login     Sign up
How to hange jcow logo position??
jan kirk (@jankirk)
Join date: Sep 20th 2010
Community posts: 24
View Profile
Send Message

HY THERE,, i HAVE AN QUESTION.
i WANT TO CHANGE THE POSITION OF JCOW LOGO (POWEREDBY.GIF)
HOW CAN i DO THAT?? CAUSE I CAN SEE WHERE IS THE CSS about that. Thanks alot...

167 months ago
Ian (@eeji)
Join date: Aug 3rd 2010
Community posts: 107
View Profile
Send Message

look in page.tpl.php for the following:

[code]<?=jcow_attribution(1);?>[/code]

this calls the function that shows the required attribution, so all you need to do is wrap this inside a div and apply your styling to it

167 months ago
jan kirk (@jankirk)
Join date: Sep 20th 2010
Community posts: 24
View Profile
Send Message

I mean is position,, I want make it on left side

167 months ago
Ian (@eeji)
Join date: Aug 3rd 2010
Community posts: 107
View Profile
Send Message

in page.tpl.php:

Find:
[code]<?=jcow_attribution(1);>[/code]

Replace with:
[code]<div style="float:left";><?=jcow_attribution(1);?></div>[/code]

167 months ago
jan kirk (@jankirk)
Join date: Sep 20th 2010
Community posts: 24
View Profile
Send Message

now its bottom enough.... :'(

167 months ago
Ian (@eeji)
Join date: Aug 3rd 2010
Community posts: 107
View Profile
Send Message

have a play around with the css in the surrounding div to position it where you like

167 months ago