• When posting, please be aware that artistic nudity is still nudity and not allowed under RpNation rules. Please edit your pictures accordingly!

    Remember to credit artists when using work not your own.

Help cut off?

houseplant

embracing all my scars and imperfections
Roleplay Availability
Roleplay Type(s)
so when i was coding, during the preview it looked fine the picture was full and the 'don't take it personal' wasn't so far down, but when i posted the code everything cut off? how can i fix it?

Code:
[nobr]
[class=img1]
height:500px;
width:300px;
background:url('https://66.media.tumblr.com/8bf8d101b3f0f14f192d808767676b26/tumblr_pdo4kz7MlB1xqxmoto4_640.png');
background-size:cover;
border-radius:20px;
[/class]

[class=personal]
width:300px;
height:20px;
background:rgba(127,51,51);
margin:auto;
margin-left:0px;
margin-top:-100px;
[/class]

[div class=img1][/div]

[div class=personal][center][color=white][font=Satisfy][size=5]don't take it personal[/size][/font][/color][/center][color=white][/color][/div]
[/nobr]
 
It is the margin-top:-100px. Use positions instead for this.
Code:
[nobr]
[class=img1]
height:500px;
width:300px;
background:url('https://66.media.tumblr.com/8bf8d101b3f0f14f192d808767676b26/tumblr_pdo4kz7MlB1xqxmoto4_640.png');
background-size:cover;
border-radius:20px;
[/class]

[class=personal]
position:relative;
top:-100px;
left:0;
width:300px;
height:20px;
background:rgba(127,51,51);
[/class]

[div class=img1][/div]

[div class=personal][center][color=white][font=Satisfy][size=5]don't take it personal[/size][/font][/color][/center][color=white][/color][/div]
[/nobr]
[class=img1] height:500px; width:300px; background:url('https://66.media.tumblr.com/8bf8d101b3f0f14f192d808767676b26/tumblr_pdo4kz7MlB1xqxmoto4_640.png'); background-size:cover; border-radius:20px; [/class] [class=personal] position:relative; top:-100px; left:0; width:300px; height:20px; background:rgba(127,51,51); [/class] [div class=img1][/div] [div class=personal]
don't take it personal
[/div]
 
It is the margin-top:-100px. Use positions instead for this.
Code:
[nobr]
[class=img1]
height:500px;
width:300px;
background:url('https://66.media.tumblr.com/8bf8d101b3f0f14f192d808767676b26/tumblr_pdo4kz7MlB1xqxmoto4_640.png');
background-size:cover;
border-radius:20px;
[/class]

[class=personal]
position:relative;
top:-100px;
left:0;
width:300px;
height:20px;
background:rgba(127,51,51);
[/class]

[div class=img1][/div]

[div class=personal][center][color=white][font=Satisfy][size=5]don't take it personal[/size][/font][/color][/center][color=white][/color][/div]
[/nobr]
[class=img1] height:500px; width:300px; background:url('https://66.media.tumblr.com/8bf8d101b3f0f14f192d808767676b26/tumblr_pdo4kz7MlB1xqxmoto4_640.png'); background-size:cover; border-radius:20px; [/class] [class=personal] position:relative; top:-100px; left:0; width:300px; height:20px; background:rgba(127,51,51); [/class] [div class=img1][/div] [div class=personal]
don't take it personal
[/div]
ahh okay thanks!
 

Users who are viewing this thread

Back
Top