I had my site designed by a very expensive corporation. Getting a hold of them seems to be quit a challenge in it self. I currently have almost everthing the way that I want it, accept for my links page. Currently we are supposed to use Word Press to edit our links… However that doesn’t exactly work the way it should. Their are two pages that may need editing. 1 is the style.css sheet and 2 is the we-love.php (links page)… In the style.css it defines certain div id’s:
/* We Love */
#welove_rightcol { float:right; width:155px; background:url(images/white-trans.png) repeat; padding:5px 5px 50px 5px; }
#welove_maincol { float:left; width:539px; }
#welove_header { width:539px; height:175px; background:url(images/we_love_banner.png) no-repeat top center; margin-bottom:12px; }
#welove_body { background:url(images/white-trans.png) repeat; color:#555;
padding:18px 40px 25px 40px; font-size:11px; line-height:15px; }
#stockists_banner { width:154px; height:46px; background:url(images/stockist_banner.jpg) no-repeat; }
div.link_desc { font-size:13px; font-family:Georgia, “Times New Roman”, Times, serif; letter-spacing:1px; }
div.link { margin:4px 0 25px 0; font-size:20px; font-family:Georgia, “Times New Roman”, Times, serif; letter-spacing:1px; }
a.link { color:#ff69b5; text-decoration:none; text-transform:lowercase; }
a.link:hover { text-decoration:underline; color:#ff9ac9; }
ul.stockists { margin:0; padding:0 0 0 8px; }
ul.stockists p { font-size:13px; color:#000; text-align:left; font-weight:normal; font-family:Georgia, “Times New Roman”, Times, serif;line-height:16px; }
li.widget_sp_image { list-style-type:none; width:145px; text-align:center; }
h2.widgettitle { text-align:left; font-family:Georgia, “Times New Roman”, Times, serif; font-size:15px;
font-weight:normal; padding:0; margin:0; text-transform:uppercase; color:#ff69b5; }
The other page has the code as follows:
<? foreach ($links as $link) { ?>
<?=$link['desc'] ?>
<? } ?>
Now this just makes the link to be the hyperlink minus the “http://” I would like to be able to make my link a picutre. Inisde wordpress it will allow me to post a picture url, but it doesn’t work inside my links page. I belive it’s being over ridden by one of the above codes. Please let me know if you think that you can help and we will go from there.
<? foreach ($links as $link) { ?>
<? } ?>
Now this just makes the link to be the hyperlink minus the “http://” I would like to be able to make my link a picutre. Inisde wordpress it will allow me to post a picture url, but it doesn’t work inside my links page. I belive it’s being over ridden by one of the above codes. Please let me know if you think that you can help and we will go from there.