• Resolved noig

    (@noig)


    Hello
    I want to add an image in the footer on the righthand side.
    This is where I am now and the code I’have found and partly modified is:
    echo '<img src="wp-content/themes/company-website-001/STL icon.jpg" width="28" height="28">'; ?><a>">RSS</a>

    Would someone be able to halp me placing this on the right within the footer?

    Thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • stvwlf

    (@stvwlf)

    Hi

    1) In your theme stylesheet, line 126, add the width line as I have it below

    #footertext {
    color:#FFFFFF;
    float:left;
    font-family:verdana,arial;
    font-size:12px;
    font-weight:bold;
    text-decoration:none;
    ADD --> width:100%;
    }

    2) change the code you pasted into your post to (based on what I added to what you pasted in)

    echo '<img src="wp-content/themes/company-website-001/STL icon.jpg" width="28" height="28" style="float: right; margin-top: -6px;">'; ?><a>">RSS</a>

    although it should probably be
    echo '<img src="wp-content/themes/company-website-001/STL icon.jpg" width="28" height="28" style="float: right; margin-top: -6px;"> <a>">RSS</a>'; ?>

    Thread Starter noig

    (@noig)

    hi stvwlf
    thanks for that I musst’ve done it slightly wrong somewhere.

    stvwlf

    (@stvwlf)

    Hi

    I don’t see that you added the “width” line that I specified in the first item I listed.

    In your theme stylesheet, line 126, add the width line as I have it below

    #footertext {
    ADD --> width:100%;
    }
    Thread Starter noig

    (@noig)

    Thanks for your time and help, very much appreciated.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘image in footer’ is closed to new replies.