Welcome our webmaster and SEO forum
Please enjoy the forum, contribute what you can, and wind up the Moderators!
Closed Thread
Results 1 to 9 of 9

Thread: Sidebar troubles

  1. #1
    CoxysBlog.com is offline Member CoxysBlog.com is on a distinguished road
    Join Date
    Apr 2008
    Posts
    31

    Default Sidebar troubles

    in my blog i have a few ads down the side, but they only show small tumbnails

    whats the problem?

    check it out

    Coxy’s Blog

    Code:
    <div id="left_sidebar"><?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(2) ) : else : ?>    
    <ul><?php get_calendar(); ?><li><h2><?php _e('Find'); ?></h2>
    <?php include (TEMPLATEPATH . '/searchform.php'); ?></li>
    <li><h2><?php _e('Archive'); ?></h2><ul><?php wp_get_archives('type=monthly'); ?></ul></li>
    <li><h2><?php _e('Twitter'); ?></h2><div class="ff">
    <?php twitter_messages("coxyb"); ?>
    <li><h2><?php _e('Shit'); ?></h2><div class="ff">
    
    <p>&nbsp;</p>
    <a href="http://www.tkqlhce.com/click-2966053-10509108" target="_top">
    <img src="http://www.lduhtrp.net/image-2966053-10509108" width="120" height="90" alt="Full Color Booklets from PsPrint" border="0"/></a>
    <p>&nbsp;</p>
    <a href="http://www.dpbolvw.net/click-2966053-10283019" target="_top">
    <img src="http://www.lduhtrp.net/image-2966053-10283019" width="125" height="125" alt="Free Business Cards Plus 14-Day Free Shipping $50+" border="0"/></a>
    <p>&nbsp;</p>
    <a href="http://www.kqzyfj.com/click-2966053-10301293" target="_top">
    <img src="http://www.ftjcfx.com/image-2966053-10301293" width="125" height="125" alt="Buy 1 domain, get 1 free!" border="0"/></a>
    
    </div>
    </li></ul>        
    <?php endif; ?></div>

  2. #2
    Bagi Zoltán's Avatar
    Bagi Zoltán is offline Boss Cart consultant Bagi Zoltán has much to be proud of Bagi Zoltán has much to be proud of Bagi Zoltán has much to be proud of Bagi Zoltán has much to be proud of Bagi Zoltán has much to be proud of Bagi Zoltán has much to be proud of Bagi Zoltán has much to be proud of Bagi Zoltán has much to be proud of
    Join Date
    Feb 2007
    Location
    Veszprém, Hungary
    Posts
    1,225

    Default

    Hello, check the linked images, they are 1px*1px gif, so that is why nothing appears.

  3. #3
    CoxysBlog.com is offline Member CoxysBlog.com is on a distinguished road
    Join Date
    Apr 2008
    Posts
    31

  4. #4
    DanielEZPZ's Avatar
    DanielEZPZ is offline Member DanielEZPZ is on a distinguished road
    Join Date
    Feb 2008
    Posts
    89

    Default

    In your CSS you have..
    Code:
    .ff a img 
    {
    border-top-width: 0.08em;
    border-right-width-value: 0.08em;
    border-right-width-ltr-source: physical;
    border-right-width-rtl-source: physical;
    border-bottom-width: 0.08em;
    border-left-width-value: 0.08em;
    border-left-width-ltr-source: physical;
    border-left-width-rtl-source: physical;
    border-top-style: solid;
    border-right-style-value: solid;
    border-right-style-ltr-source: physical;
    border-right-style-rtl-source: physical;
    border-bottom-style: solid;
    border-left-style-value: solid;
    border-left-style-ltr-source: physical;
    border-left-style-rtl-source: physical;
    border-top-color: #cccccc;
    border-right-color-value: #cccccc;
    border-right-color-ltr-source: physical;
    border-right-color-rtl-source: physical;
    border-bottom-color: #cccccc;
    border-left-color-value: #cccccc;
    border-left-color-ltr-source: physical;
    border-left-color-rtl-source: physical;
    padding-top: 0.077em;
    padding-right: 0.077em;
    padding-bottom: 0.077em;
    padding-left: 0.077em;
    opacity: 0.3;
    width: 3.5em;
    height: 3.5em;
    margin-top: 0pt;
    margin-right: 0.077em;
    margin-bottom: 0.077em;
    margin-left: 0pt;

    3.5em is about 37px and is squeezing your images.
    EZPZ Hosting.co.uk - Affordable and Reliable UK Web Hosting
    Free Domain for Life - Hourly Backups - Fast UK Servers

  5. #5
    CoxysBlog.com is offline Member CoxysBlog.com is on a distinguished road
    Join Date
    Apr 2008
    Posts
    31

    Default

    where did you find that and where should i edit?

  6. #6
    DanielEZPZ's Avatar
    DanielEZPZ is offline Member DanielEZPZ is on a distinguished road
    Join Date
    Feb 2008
    Posts
    89

    Default

    You need to edit /blog/wp-content/themes/dust-317/style.css
    Look for .ff img in that file and adjust the width.
    EZPZ Hosting.co.uk - Affordable and Reliable UK Web Hosting
    Free Domain for Life - Hourly Backups - Fast UK Servers

  7. #7
    DanielEZPZ's Avatar
    DanielEZPZ is offline Member DanielEZPZ is on a distinguished road
    Join Date
    Feb 2008
    Posts
    89

    Default

    Find..

    Code:
    .ff a img{border:.08em solid #ccc;padding:.077em;opacity:.3;width:3.5em;height:3.5em;margin:0 .077em .077em 0;}.ff a:hover img{border:.08em solid #333;opacity:1;width:3.5em;height:3.5em;}
    Replace it with..

    Code:
    .ff a img{border:.08em solid #ccc;padding:.077em;opacity:.3;width:125px;height:125px;margin:0 .077em .077em 0;}.ff a:hover img{border:.08em solid #333;opacity:1;width:125px;height:125px;}
    EZPZ Hosting.co.uk - Affordable and Reliable UK Web Hosting
    Free Domain for Life - Hourly Backups - Fast UK Servers

  8. #8
    CoxysBlog.com is offline Member CoxysBlog.com is on a distinguished road
    Join Date
    Apr 2008
    Posts
    31

    Default

    ok, still a little broke

  9. #9
    DanielEZPZ's Avatar
    DanielEZPZ is offline Member DanielEZPZ is on a distinguished road
    Join Date
    Feb 2008
    Posts
    89

    Default

    Either resize your images, or make your sidebar wider in the CSS.
    EZPZ Hosting.co.uk - Affordable and Reliable UK Web Hosting
    Free Domain for Life - Hourly Backups - Fast UK Servers

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Bookmarks

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124