Changing a Footer Width for About.me widget

  • Unknown's avatar

    Hi there anybodies assistance would be great.

    I’m trying to change the Width of the Footer Left so that it can display the text ascetically but having problems as CSS is not my forte

    I would also either use the Gravitar Widget and use a Text widget for my text in the Footer Mid-left but having the same problem any Ideas.

    Secondly on my Home Page there are three options below the featured post slider how do I keep those images as the thumbnails but have a different image in the header on the Page?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, for the two narrow widgets in your footer, add the following CSS and see what you think. You can adjust the % width value as desired. What I did was to specifically target the about and text widgets by ID in left and middle positions.

    #aboutme_widget-2, #text-2 {
        width: 230%;
    }
  • Unknown's avatar

    For you pages, you can target pages by page ID and have individual headers by page. You can find those in Organization by viewing the source code for the page and you will see something similar to this:

    <div id="page-56" class="container">

    The following is an example for your “Das BodyTalk System” page, which has a unique page ID of 56.

    #page-56 .feature-img {
        height: 192px;
        max-width: 980px;
        background: url("URL_OF_IMAGE") no-repeat scroll 0 0 transparent;
    }
    #page-56 .feature-img img {
        display: none;
    }

    Upload your header image to your media library, get the URL of that image and then replace URL_OF_IMAGE between the quote marks with the URL of your chosen header image.

    The IDs for the three across the top on your main page are as follows:

    Das BodyTalk System: #page-56
    Faszien Therapie: #page-58
    LifePrint Coaching: #page-60

  • Unknown's avatar

    Thank you what a LEGEND am going to try this now :)

  • Unknown's avatar
  • The topic ‘Changing a Footer Width for About.me widget’ is closed to new replies.