The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

how do i move this??

4 posters

Go down

Solved how do i move this??

Post by xiaomah01 November 16th 2011, 8:10 am

how do i move this?? YBaAr-------->how do i move this?? I3eYT

the number move to below{here}

¡ºdisplayed on google chrome¡»


Last edited by xiaomah01 on November 21st 2011, 11:44 am; edited 1 time in total
xiaomah01
xiaomah01
Forumember

Male Posts : 206
Reputation : 7
Language : English|Chinese|malay
Location : malaysia

http://johor.forumn.org/

Back to top Go down

Solved Re: how do i move this??

Post by kirk November 16th 2011, 4:32 pm

can you post a link to the page on your forum.
I cant seem to figure out how to navigate on the forum from the link in your profile.
kirk
kirk
Forumaster

Male Posts : 11037
Reputation : 653
Language : English,Vulcan,Klingon, Romulan,& Gorn

Back to top Go down

Solved Re: how do i move this??

Post by xiaomah01 November 16th 2011, 5:39 pm

kirk wrote:can you post a link to the page on your forum.
I cant seem to figure out how to navigate on the forum from the link in your profile.

http://johor.forumn.org/t1500-topic#.TsPnFMPz20s
xiaomah01
xiaomah01
Forumember

Male Posts : 206
Reputation : 7
Language : English|Chinese|malay
Location : malaysia

http://johor.forumn.org/

Back to top Go down

Solved Re: how do i move this??

Post by xiaomah01 November 21st 2011, 8:59 am

bump
xiaomah01
xiaomah01
Forumember

Male Posts : 206
Reputation : 7
Language : English|Chinese|malay
Location : malaysia

http://johor.forumn.org/

Back to top Go down

Solved Re: how do i move this??

Post by ankillien November 21st 2011, 11:21 am

Hi,

It could be done if you reduce the font-size of that part to 10 or 9 pixels. This javascript will do it...

Code:
$(function(){
$('.post td[width="200"] span.gensmall').css('font-size','9px');
});

Hope it helps Smile

EDIT:

Excuse me, am I getting it wrong?
Do you want to put the (50/100) text besides the bar or below the bar?

If you want to put it below, this code would work...

Code:
$(function(){
$('.post td[width="200"] span.gensmall').css('display','block');
});
ankillien
ankillien
Energetic

Posts : 5198
Reputation : 129
Language : English, XHTML, CSS, JS, PHP, SQL

Back to top Go down

Solved Re: how do i move this??

Post by xiaomah01 November 21st 2011, 11:43 am

ankillien wrote:

EDIT:

Excuse me, am I getting it wrong?
Do you want to put the (50/100) text besides the bar or below the bar?

If you want to put it below, this code would work...

Code:
$(function(){
$('.post td[width="200"] span.gensmall').css('display','block');
});

You are wonderful!!! Very good Very good Very good how do i move this?? 2786780291

thanks...how do i move this?? 4271622967how do i move this?? 3063782546



Edit:

blog type can not show it below bwi
xiaomah01
xiaomah01
Forumember

Male Posts : 206
Reputation : 7
Language : English|Chinese|malay
Location : malaysia

http://johor.forumn.org/

Back to top Go down

Solved Re: how do i move this??

Post by LGforum November 21st 2011, 2:30 pm

You'd be better with this, since it avoids changing the width of your post profiles and font sizes etc.

Code:

$(function() {
$('.poster-profile .gensmall').before('<br>');
});

Put it only in topics. and if you already have a jQuery function running in topics then just add the middle line to that.
LGforum
LGforum
Hyperactive

Male Posts : 2265
Reputation : 264
Language : English
Location : UK

Back to top Go down

Solved Re: how do i move this??

Post by xiaomah01 November 21st 2011, 3:15 pm

LGforum wrote:You'd be better with this, since it avoids changing the width of your post profiles and font sizes etc.

Code:

$(function() {
$('.poster-profile .gensmall').before('<br>');
});

Put it only in topics. and if you already have a jQuery function running in topics then just add the middle line to that.
thanks...be alright Hello


and also have 1 problem...
the problem have be solved but no in blog mode
https://help.forumotion.com/t100321-how-to-chage-the-profile-body-color
xiaomah01
xiaomah01
Forumember

Male Posts : 206
Reputation : 7
Language : English|Chinese|malay
Location : malaysia

http://johor.forumn.org/

Back to top Go down

Solved Re: how do i move this??

Post by ankillien November 21st 2011, 3:22 pm

Can you give link to a page on your forum where you have blog mode?
ankillien
ankillien
Energetic

Posts : 5198
Reputation : 129
Language : English, XHTML, CSS, JS, PHP, SQL

Back to top Go down

Solved Re: how do i move this??

Post by xiaomah01 November 21st 2011, 3:25 pm

ankillien wrote:Can you give link to a page on your forum where you have blog mode?

http://johor.forumn.org/t488-topic Hello
xiaomah01
xiaomah01
Forumember

Male Posts : 206
Reputation : 7
Language : English|Chinese|malay
Location : malaysia

http://johor.forumn.org/

Back to top Go down

Solved Re: how do i move this??

Post by ankillien November 21st 2011, 3:30 pm

I can see it working there as well. The numbers are already below the bar.
ankillien
ankillien
Energetic

Posts : 5198
Reputation : 129
Language : English, XHTML, CSS, JS, PHP, SQL

Back to top Go down

Solved Re: how do i move this??

Post by xiaomah01 November 21st 2011, 3:36 pm

ankillien wrote:I can see it working there as well. The numbers are already below the bar.

nonono...this is another problem,problem link:https://help.forumotion.com/t100321-how-to-chage-the-profile-body-color

because i cannot reply again in that topic
xiaomah01
xiaomah01
Forumember

Male Posts : 206
Reputation : 7
Language : English|Chinese|malay
Location : malaysia

http://johor.forumn.org/

Back to top Go down

Solved Re: how do i move this??

Post by ankillien November 21st 2011, 3:39 pm

Oh! Sorry for misunderstanding.

This code will fix the issue for blog mode...

Code:
.post td[width="150"]{
background: red;
}

The same code with width 150.
ankillien
ankillien
Energetic

Posts : 5198
Reputation : 129
Language : English, XHTML, CSS, JS, PHP, SQL

Back to top Go down

Solved Re: how do i move this??

Post by xiaomah01 November 21st 2011, 3:47 pm

ankillien wrote:Oh! Sorry for misunderstanding.

This code will fix the issue for blog mode...

Code:
.post td[width="150"]{
background: red;
}

The same code with width 150.

ya..how do i move this?? 184121345so many thanks for your...u are many times helping me Hello how do i move this?? 2452323834how do i move this?? 2452323834
xiaomah01
xiaomah01
Forumember

Male Posts : 206
Reputation : 7
Language : English|Chinese|malay
Location : malaysia

http://johor.forumn.org/

Back to top Go down

Solved Re: how do i move this??

Post by ankillien November 21st 2011, 3:49 pm

Glad I could help out Very Happy

Topic Solved
ankillien
ankillien
Energetic

Posts : 5198
Reputation : 129
Language : English, XHTML, CSS, JS, PHP, SQL

Back to top Go down

Back to top


 
Permissions in this forum:
You cannot reply to topics in this forum