• Basically, I’m a stupid n00b. It took me 2 and a half hours to install wordpress, and now I’m stuck. Basically, I want wordpress to be a standalone blog so to speak, to fit into the bottom window of my site (see what i mean at https://armageddonbride.net/ and no, it’s nowhere near complete yet.) and to fit in with the colour scheme. Could anyone give me some help/pointers? Thankyou ?? x

Viewing 8 replies - 1 through 8 (of 8 total)
  • Moderator James Huff

    (@macmanx)

    Just stick the Loop in that table. “Easy as pie.”

    https://codex.www.ads-software.com/The_Loop

    Thread Starter armageddonxbride

    (@armageddonxbride)

    I feel so stupid…I’m even confused by that tutorial…whats a table?

    A table is a HTML tag (www.w3schools.com will tell you all about it)

    <table> (start of the table)
    <tr>(start of a new row)
    <td>(start of a column in the row)
    </td> (end column)
    </tr> (end row)
    </table> (end complete table)

    Text goes between the <td> </td> tags

    A small table consisting of 3 columsn and 2 rows would be like:
    <table>
    <tr>
    <td> Column 1</td>
    <td> Column 2</td>
    <td> Column 3</td>
    </tr>
    <tr>
    <td> Column 4</td>
    <td> Column 5</td>
    <td> Column 6</td>
    </tr>
    </table>

    The outcome would be:

    |——|—–|—–|
    |—1–|–2-|–3-|
    |——|—–|—–|
    |—4–|–5-|–6-|
    |——|—–|—–|

    (I hope this will look good in here…)

    Thread Starter armageddonxbride

    (@armageddonxbride)

    I get that…I don’t have tables on my page. I have IFRAMES. I put the Loop into Notepad and saved it as a page, but it just comes up with some random > & ? ___ type things?

    Thread Starter armageddonxbride

    (@armageddonxbride)

    Ooh wait a mo…I think I got it ??

    Are you trying to run php inside of a page? If so, you will need this plugin….
    https://dev.wp-plugins.org/wiki/RunPHP

    ?? the iframe will load a complete other page in side an other page.. But use this in the blog ??

    Thread Starter armageddonxbride

    (@armageddonxbride)

    OK, now I’ve managed to lose my header and stuff. NOW my CSS isn’t changing the blog style :S

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘How to get rid of header, sidebar etc’ is closed to new replies.