Wordpress Themes - WP Forum at BFA

Wordpress Themes - WP Forum at BFA (http://forum.bytesforall.com/index.php)
-   Post-Kicker, -Byline & -Footer (http://forum.bytesforall.com/forumdisplay.php?f=17)
-   -   Footer + Img + Link (http://forum.bytesforall.com/showthread.php?t=14268)

chycoo May 22, 2011 10:10 AM

Footer + Img + Link
 
Hello,

I'm having trouble inserting images in the footer or any widget.

When I put the code below works correctly:

<img src="http://mywebsite.com/blog/wp-content/themes/atahualpa367/images/facebook.gif">

But when I put the image link does not show more:

<a href="www.facebook.com"><img style="border: 0px solid ; width: 120px; height: 60px;" alt="" src="http://mywebsite.com/blog/wp-content/themes/atahualpa367/images/facebook.gif"></a>

I´m using Atahualpa 367 WP 312

Thanks

juggledad May 22, 2011 10:41 AM

HTML Code:

<a href="www.facebook.com">
is not a valid URL, you need to use
HTML Code:

<a href="http://www.facebook.com">

chycoo May 22, 2011 10:54 AM

Hello Juggledad,

Thanks, I tried with and without "http://" but the image and link does not appear.

juggledad May 22, 2011 02:02 PM

what is the url, and set it with the http://... in it so I can take a look.

chycoo May 22, 2011 02:16 PM

Can I send to you by private message?
I just make you administrator e send you a password
Thank you very much.

juggledad May 22, 2011 02:24 PM

Make sure you have all teh BUGFIX's applied.

chycoo May 22, 2011 02:32 PM

how can I see this?
Today I installed the current version of Worpress and the latest version of the theme atahualpa

lmilesw May 22, 2011 03:12 PM

There are currently three bug fixes for 3.6.7 in the New Versions and Updating forum.

chycoo May 22, 2011 03:26 PM

Thanks lmilesw,

I have some difficulty finding the information because of my poor english.

chycoo May 22, 2011 03:58 PM

Dear sirs juggledad and lmilesw

i setting 'ATO->Configure CSS & JS->CSS: Compress?' set to 'no'

and solved !

Thanks

lmilesw May 22, 2011 04:11 PM

That is one way to fix the problem but if you apply all the bug fixes for 3.6.7 in the New Versions and Updating thread you won't have to. Just look for all the fixes that start with BUGFIX 367.

chycoo May 22, 2011 04:13 PM

I will tray, thanks again.

juggledad May 22, 2011 07:06 PM

it looks like it is working (in Safari) but your code is wrong and may cause issues in some browsers. You have
HTML Code:

    <div style="text-align: right;">
            <a target="_blank" href="http://www.facebook.com">
                    <img style="border: 0px solid ; width: 78px; height: 39px;" alt="Facebook" src="http://yourdomain.com/wp-content/uploads/2011/05/facebook.gif">
    </div>

notice the missing '/' in the <img> element and the missing </a> before the </div> so it should look like this
HTML Code:

    <div style="text-align: right;">
            <a target="_blank" href="http://www.facebook.com">
                    <img style="border: 0px solid ; width: 78px; height: 39px;" alt="Facebook" src="http://yourdomain.com/wp-content/uploads/2011/05/facebook.gif" /></a>
    </div>



All times are GMT -6. The time now is 12:25 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.