Need Help To Customize a HTML CSS Template

Discussion in 'CSS' started by techbongo, Jul 12, 2010.

  1. #1
    Hi,
    Please have a look at http://www.templatemo.com/templates/templatemo_147_biz_darkblue/. I want to modify this template. You can download the template here - http://www.templatemo.com/download/templatemo_147_biz_darkblue. I want to add a new div at the top right corner of the template on the blue header. I want to add some text inside the div. Rest of the styling like, font, color, hyperlink - I'll do them all. I just need the div positioning code, so that it looks same on all browsers.

    My Text may be multiline, so I need <p> tag support inside the div. Please help. I'm unable to do this edit. I've attached a screenshot to show you the exact position.

    download.jpg
     
    techbongo, Jul 12, 2010 IP
  2. simpleloveman

    simpleloveman Guest

    Messages:
    37
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I can do it for you.
     
    simpleloveman, Jul 12, 2010 IP
  3. techbongo

    techbongo Active Member

    Messages:
    309
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    80
    #3
    Please help me with the piece of code. What exactly I need to apply in style - float, clear or something else?

    Unfortunately I cannot pay you for this work. The reason is, the template will be used for a non-profit project and I'm also not making money out of it. If you're able to help, I'll be grateful. May be some day, I'll return you some...
     
    techbongo, Jul 12, 2010 IP
  4. KnuTz

    KnuTz Well-Known Member

    Messages:
    169
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    130
    Digital Goods:
    1
    #4
    add this to your css,in my case i name it header-right name it to whatever you want
    
    #header-right
    {
        width:200px;
        height:60px;
        margin:20px 0px 0px 0px;
        float:right;
        border:1px solid #000;
    }
    
    Code (markup):
    adjust width,height, margin if needed , you can remove border:1px solid #000; it's just to let you see where the div is....


    edit your html find

    <div id="site_logo"></div>
    Code (markup):
    add after this code
    
    <div id="header-right"></div>
    
    Code (markup):
     
    KnuTz, Jul 12, 2010 IP