• Could someone help me, the footer image not appearing .
    I realy do not know wyh? I made sure that wanted image is uploaded under blog theme image.

    I guess something wrong with the ccs coding .
    style-black.css

      #footer { background: #616161 url(images/footerw.png) repeat-0 top; }
      .footer_widget_area a { color: #b3bee0; }
      .footer_widget_area ul { text-shadow: 1px 1px 1px #282628; }

    stylesheet.ccs

      /* Footer */

      #footer { padding: 50px 25px 20px 25px; color: #fff;}
      .footer_widget_area { float: left; width: 30%; margin-left: 40px; color: #c03; }
      .footer_widget_area a:hover { color: #fff; }
      .footer_widget_area:first-child { margin-left: 0; }
      .footer_widget_area ul { list-style: none; }
      .footer_widget_area ul li { margin: 30px 0 0 0; padding: 0; }
      .footer_widget_area ul li:first-child { margin-top: 0; }
      .footer_widget_area ul li h2 { color: #fff; font-family: Arial; font-size: 18px; padding-bottom: 5px; border-bottom: 1px #ebb solid; }
      .footer_widget_area ul li li { padding: 5px 0; margin: 0; }
      .footer_widget_area ul li li:first-child { padding-top: 0; }

    could Blog expartise help me.

    Thanks

Viewing 10 replies - 1 through 10 (of 10 total)
  • do you have a link to your site, where this can be checked?

    there is no there way to help with this kind of css issue.

    Thread Starter ivwomen

    (@ivwomen)

    Thanks Alchymyth for you replay my site is https://www.womenrich.com.

    I hope this may help you.

    i am quite sure that the footerw.png is not where it should be:
    https://www.womenrich.com/wp-content/themes/multi-color/images/footerw.png

    and there is a small mistake in this line:
    #footer { background: #616161 url(images/footerw.png) repeat-0 top; }

    should read:
    #footer { background: #616161 url(images/footerw.png) no-repeat top; }

    Thread Starter ivwomen

    (@ivwomen)

    Thanks alchymyth you were right .

    If you could help with two more footer issues:

    1) how to make space between the body and footer image?
    2) why the copy right is not appearing in blog footer
    style-black.css

      .copyright { text-shadow: 1px 1px 1px #ffffff; }

    1.
    you could try to add a bottom padding to the body style:

    body { padding-bottom: 40px;}

    2.
    the div is empty:

    <div class="copyright">
                       </div>

    check the code of footer.php for any possible copyright text.

    Thread Starter ivwomen

    (@ivwomen)

    For 1
    I tried but not working here is the code:
    style-black.css

      body { background: url(images/black/background.png) repeat;}
      body { padding-bottom: 40px;}
      a { color: #983c1b; text-decoration: none; }
      a:hover { color: #024c9f; }

    OR
    style.css
    html, body { margin: 0; padding: 0; text-align: center; font-family: Arial; font-size: 13px; text-shadow: 1px 1px 1px #fff; color: #666;}
    body { padding-bottom: 40px;}

    Regarding 2.
    you right under footer.php :
    <div class=”copyright”>
    </div>
    BUT no copyright test.
    under style-black.css

      #footer { background: #616161 url(images/footergr.png) repeat-x top;}
      .footer_widget_area a { color: #b3bee0; }
      .footer_widget_area ul { text-shadow: 1px 1px 1px #282628; }
      .copyright { text-shadow: 1px 1px 1px #ffffff; }

    for more space at the bottom, you could try alternatively (added to style-black.css, for instance)

    #wrapper{margin-bottom:60px;}

    with the copyright:
    do you want to show a copyright message?
    if yes, you probably need to add this to footer.php; into the <div class="copyright"> ...

    Thread Starter ivwomen

    (@ivwomen)

    Hi alchymyth appriciate you help.

    The space i need is between the body and footer ( the white color body box and gray color footer) https://www.womenrich.com

    body has a very special meaning in html and css (it is kind of everything outside any divs on the screen); this is the reason i was suggesting the ‘wrong’ thing.

    you could add margin-top:30px; to the style of #footer – this would give you more white area;

    if you intend to separate the footer from the content, there is no easy way without (major) changes to the html structure.

    Thread Starter ivwomen

    (@ivwomen)

    Thanks alchymyth .

    Actully i needed to separate the footer from the content as it was in the wp theme “multi colorb” befoe i make changes.

    I guess i should leave it as it is since I can’t do major changes.

    Thanks again.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Why blog footer image not appearing?’ is closed to new replies.