Sven
New Member
Posts: 78
inherit
200586
0
Oct 6, 2017 10:00:22 GMT -8
Sven
78
September 2013
thelionking
|
Post by Sven on Jun 17, 2017 17:40:49 GMT -8
Hello I am currently using this code and I don't like that the money amount is so close to the word, it's really bugging me but I can't seem to figure out to move it over to the right side of the profile as well has have "Food Pile" Bold Could anyone give me an hand Posts: <span style="float: right;">$[user.posts]</span><br /> Likes: <span style="float: right;">$[user.likes]</span><br / ------------> Food Pile:<span class="money_amount" title="Stash"></span></div>
It's looking like this
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Jun 17, 2017 22:01:17 GMT -8
Hello I am currently using this code and I don't like that the money amount is so close to the word, it's really bugging me but I can't seem to figure out to move it over to the right side of the profile as well has have "Food Pile" Bold Could anyone give me an hand Posts: <span style="float: right;">$[user.posts]</span><br /> Likes: <span style="float: right;">$[user.likes]</span><br / ------------> Food Pile:<span class="money_amount" title="Stash"></span></div>
It's looking like this Is there a reason there is a second 10.00 over on the right or were you showing us where you want it? Anyway, I'd put span tags around the "Food Pile" so you can use css to bold it. So your html part would be: < span id="foodpile">Food Pile: </span><span class="money_amount" title="Stash"></span> <p style="clear:both;"></p>
I added the p tags to clear the floats so it doesn't mess up things following it. And the css to go in the bottom of your style sheet would be: #foodpile{font-weight:bold;float:left;} .money_amount{float:right;} Try that and see if it does the trick. (You could, of course, just add bold tags around the "Food Pile" ) <b>Food Pile</b> By the way, I moved your post as it seems to fit in templates better than generic coding.
|
|
Sven
New Member
Posts: 78
inherit
200586
0
Oct 6, 2017 10:00:22 GMT -8
Sven
78
September 2013
thelionking
|
Post by Sven on Jun 17, 2017 22:15:50 GMT -8
Tumbleweed I was trying to show where I wanted it Put everything in and it worked prefect!
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Jun 17, 2017 22:55:02 GMT -8
Tumbleweed I was trying to show where I wanted it Put everything in and it worked prefect! I kind of thought you were just showing where you wanted it. Anyway, glad that worked for you.
|
|