« Back to the HTML Forum

Blog formatting

Posted by Doodle

posted

Forum: HTML Group

can someone help me with coding a blog? its been so long since my ap comp class,,, ive basically forgotten everything,,, im mostly confused as to how to change the background and so other

i get so lost with the formatting,, but i know if then else statements and that these symbols mean that a function cannot happen unless they are equal to,,, ==


Report Topic

3 Replies

Sort Replies:

Reply by heath

posted

blog customization is basically the same as profile customization. go to the blog post, click the two blue arrows in the top left of toolbar, and put your html/css there.

nearly all codes will work on a blog post.

post a specfic question for a specific answer.


Permalink Report Reply

Reply by Doodle

posted

do you know how to add an image to the background of the blog? not the actual block of text but the background, its been super confusing and idk how,,, thank you so much ߹𖥦߹


Permalink Report Reply

Reply by heath

posted

should be the same as adding a background to your profile:


<style>

body{

background-image: url("IMAGE URL HERE") !important;

background-repeat: no-repeat !important;

background-size: cover !important;

background-attachment: fixed !important;

}

</style>



you can change the background repeat and background size to your liking.


Permalink Report Reply