HTML HELP on Notices

wickedstangs

Well-known member
Can I get some help on html... Trying to fix the below image.. Want the image to the right and text a bit smaller to fit right...

HTML:
<img src="/community/styles/notice-background.png" style="display:block; width:400px" title="Fox Body Mustangs" />
<div class="csgoIntro" style="position:absolute; top:0; left:0; height:100%; width:230px;">
    <div style="padding: 05px;">
        <h3>Welcome to Fox Body Mustangs!</h3></br>
            <p>This forum is intended to be used by enthusiasts of the Fox body Ford Mustangs (1979-1993).  Come on in and join our discussions about Fox Body Mustangs! Take a moment to <a href="http://foxbodymustangs.org/community/register/">Register</a> to gain extra privileges and access to other areas of the site normal guest do not have..</p>       
 
<div class="noticeButtonContainer">
            <label for="LoginControl" id="SignupButton"><a href="http://www.foxbodymustangs.org/community/login/" class="inner"><b>Sign Up Now!</b></a></label>
        </div>
        <div class="csgoMember">Already a member? <a href="http://www.foxbodymustangs.org/community/login">Login Now!</a></div>
    </div>
</div>

notice.webp
 
That is a size constraint. You need to either reduce the width of the image or the width of the text. If you can, you can increase the notice width by increasing the width of the pageWidth (can be done via style properties), but that increases the width of your style.
 
Try pasting this entire code snippet into your extra css for the style you are editing
Code:
.baseHtml.noticeContent > img {
    bottom: 5px;
    left: 17px;
    position: relative;
}
 
.csgoIntro {
    font-size: 15px;
}
 
.csgoIntro div h5 {
    bottom: 14px;
    font-size: 18px;
    position: relative;
    right: 9px;
}

Awesome that worked.. Thank you..
 
Top Bottom