• Resolved jbento

    (@jbento)


    All,
    Here is the site I am working on: https://www.jirehvirtualsolutions.com/wordpress/

    I am having a heck of a time trying to figure out how to position the slider to move up some.

    I have went into the style sheet, the piecemaker php file, and other areas and whatever I try is not working or maybe I am just missing something.

    Can someone please help me figure this out, where I can position this slider to move up a litter higher?

    Thank you so much for your help in advance!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,

    Your problem is in the markup, not the css.
    You are setting a very large height (600px) for your <object> tag:

    <object id="piecemaker" width="960" height="600" type="application/x-shockwave-flash" data="https://www.jirehvirtualsolutions.com/wordpress/wp-content/themes/triumph/scripts/piecemaker/web/piecemaker.swf" style="visibility: visible;">

    If you change it to 400 it will look way better.
    If, for some reason, you are unable to edit the markup, try this in your style.css file:

    #piecemaker {
    height:400px!important;
    }

    If that doesn’t cut it, you might have to use negative margins on your object:

    #piecemaker {
    margin-top:-200px;
    }

    This is not very “elegant,” but it will get the job done.

    Cheers!

    Thread Starter jbento

    (@jbento)

    Thank you so much!

    The first suggestion helped and I was able to find it!

    Glad it worked.
    Good luck with your site!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘image positioning’ is closed to new replies.