Support » Fixing WordPress » Serious widget positioning problem help

  • I want to move my 2 advertisment widget over a bit more but I everytime I move it it the pictues in my featured post move with it.

    I only want to move that particular element and keep the post pictures where they are.I need the proper code

    I used this code in fire bug

    .entry-content img, .comment-content img, .widget img {
    max-width: 220px;
    position: relative;
    right: 3px;
    }

    This is my site thanks http://www.fatsanity.com/

Viewing 1 replies (of 1 total)
  • that style is formatting three different images – entry, comment, and widget;

    if you only want to effect the widget image, try to use just:

    .widget img {
    max-width: 220px;
    position: relative;
    right: 3px;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Serious widget positioning problem help’ is closed to new replies.