• Resolved scott_d

    (@scott_d)


    hey all. this is my first post so i hope someone can help. i have set up a few blogs/sites and havent run into this and tried many thing but nothing seemed to work

    http://bleubird.org/news/boyfriends-inc-crash-nx35/

    i am trying to have the photos on a new line and the words… or paragraph.

    like so…

    words
    <–> space
    pic
    <–> space
    pic
    <–> space
    pic
    <–> space
    words

    let me know if you need anymore info
    thanks in advance
    scott

Viewing 3 replies - 1 through 3 (of 3 total)
  • wp-rory

    (@wp-rory)

    Hi,

    In your style.css file you have some declarations for images where they are told to float left or right and also to display inline rather than as block. You may like to change either or both of these things.

    Try changing the following lines and see how you get on:

    • From: `img.alignright {
      border:1px solid #59350B;
      display:inline;
      margin:0 0 13px 13px;
      }`
    • To: `img.alignright {
      border:1px solid #59350B;
      display:block;
      margin:0 0 13px 13px;
      }`
    • From: `img.alignleft {
      border:1px solid #59350B;
      display:inline;
      margin:0 13px 13px 0;
      }`
    • To: `img.alignleft {
      border:1px solid #59350B;
      display:block;
      margin:0 13px 13px 0;
      }`
    • From: `.alignleft {
      float:left;
      }`
    • To: `.alignleft {
      float:none;
      }`
    • From: `.alignright {
      float:right;
      }`
    • To: `.alignright {
      float:none;
      }`

    Have a play around and see how it works for you.

    All the best,

    Rory. 🙂

    Thread Starter scott_d

    (@scott_d)

    Hey Rory, thanks. i will give it a try tonight and let you know how it goes.

    thanks for your time
    scott

    Thread Starter scott_d

    (@scott_d)

    Thanks! it worked

    i completely missed that bit of coding …

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Writing Post Problem’ is closed to new replies.