Pregunta

Esta es mi Código que está funcionando bien, pero cuando cambio MI Headline2Text a "Precio de venta $ 25. Este es un texto de muestra. $ 244 "Entonces la imagen del logotipo automático cambia su posición.No quiero que el logotipo cambie su posición, pero debe permanecer en su lugar y no debe verse afectado por el TitreLine2TXT.¿Cómo solucionar este problema?

 <div id="wrapper">
        <div id="mainContainer">
            <p class="copyrights" id="copyrights"></p>
            <div>
                <img id="Image_Car" src="http://i.share.pho.to/25a090ef_c.png" />
            </div>
                  <div id="headlineText">
            <p id="headline1Txt" >Sample bag1</p>
            <p id="headline2Txt" >Sale Price $25 </p>

        </div>
            <div id="disclaimer" >
               Details*
            </div>
              <div id="Image_logo">
                <img id="Imglogo" src="http://i.share.pho.to/93578bd4_o.png" />
            </div>

           <div >
           <button class="btn btn-primary" type="button"  id="ctaBtn"><div id="fadeIn" >  Learn More Now </div></button>

        </div>
    </div>


#Image_logo img
{
    position:relative;
    width:140px;
    height:30px;
    top:-3px;
left:390px;
}
</div>

¿Fue útil?

Solución

Tiene position: relative; en #image_logo img , pero intenta posicionarlo la "forma absoluta".Trate de cambiar su CSS como este:

#Image_logo img {
    position:absolute;
    width:140px;
    height:30px;
    top:40px;
    left:390px;
}

Otros consejos

I may not understand what you're asking, but I think the lack of a float is throwing you. Adding some css like this..

<style>
#Image_logo img {
    width:140px;
    height:30px;
}
#wrapper {
    float:left;
}
</style>

...should work. It should be in a separate .css file of course.

Try giving your #Image_logo img position: absolute instead of relative, then modify top, left etc. Then it should be always in the same place;

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top