Website Help

Status
This thread has been locked.

SavagezPvP

Feedback score
2
Posts
186
Reactions
26
Resources
0
So, recently been thinking to open up a discord bot shop and I know most of it but I can't seem to code this certain part. I am using brackets, html. The thing I can't code is something like this image without the bottom part with the + and - and for the picture i want the discord logo with my chosen price and some info I add myself. Sorry, if its hard to explain but if someone can help add me on discord. Also, I don't think its that hard so its not being paid for. SavagezPvS#5585
 
Last edited:
PebbleHost
High performance, consistent uptime and fast support. Minecraft hosting that just works.

Grace.

Supreme
Feedback score
19
Posts
796
Reactions
367
Resources
4
So, recently been thinking to open up a discord bot shop and I know most of it but I can't seem to code this certain part. I am using brackets, html. The thing I can't code is something like this image without the bottom part with the + and - and for the picture i want the discord logo with my chosen price and some info I add myself. Sorry, if its hard to explain but if someone can help add me on discord. Also, I don't think its that hard so its not being paid for. SavagezPvS#5585

<div class="crappytitlehere">
<img class="imageone" src="your image link here">
<p class="yourtextstuff">
<strong>TITLE</strong>
This alt is <br>
teh best alt.
</p>
</div>

<style>
.crappytitlehere {
width: 400px;
}
.imageone {
width: 400px
}
.yourtextstuff {
padding-top: 10px;
padding-bottom: 10px
}
</style>
 

SavagezPvP

Feedback score
2
Posts
186
Reactions
26
Resources
0
<div class="crappytitlehere">
<img class="imageone" src="your image link here">
<p class="yourtextstuff">
<strong>TITLE</strong>
This alt is <br>
teh best alt.
</p>
</div>

<style>
.crappytitlehere {
width: 400px;
}
.imageone {
width: 400px
}
.yourtextstuff {
padding-top: 10px;
padding-bottom: 10px
}
</style>
That would go in the <body> and then </body> right?

EDIT: If works will probably rep you and also what if i want more I would just copy paste right?
 
Last edited:

pace

average physics enjoyer
Supreme
Feedback score
40
Posts
856
Reactions
491
Resources
0
Doesn't matter. Put it wherever you want. Body's most common.
you can't put the code you want to display on the page out of body all the code must be in body

so basically

<!DOCTYPE html>
<html>
<head>
meta's and title
</head>
<body>
all the code you want to display in the site here
</body>
</html>
 
Last edited:

Grace.

Supreme
Feedback score
19
Posts
796
Reactions
367
Resources
4
LOL you can't put the code you want to display on the page out of body all the code must be in body

so basically

<!DOCTYPE html>
<html>
<head>
meta's and title
</head>
<body>
all the code you want to display in the site here
</body>
</html>
Following proper syntax sure. In practice no.
 

SavagezPvP

Feedback score
2
Posts
186
Reactions
26
Resources
0
You asked for help not for someone to make the site for you.
Also, don't come back to trash my thread saying "You asked for help not for someone to make the site for you." I asked 2 simple questions not asking someone to make it for me.
 
Status
This thread has been locked.
Top