Page 1 of 2 12 LastLast
Results 1 to 10 of 13

Thread: How to I add a headergrafic?

  1. #1

    Default How to I add a headergrafic?

    hi,

    How to I add a headergrafic like on sagre.tv?

    Thanks in advance

    Igor
    VioTV.net - Broadcasting Democracy

  2. #2

    Default

    You can put the header image on


    <TABLE cellSpacing=0 border="0" cellPadding=0 width="100%" >
    <TR vAlign=center>
    <td align="right" width=212> here You header including logo</td>

    Or You can add as background like
    <td background="here your background" >Logo</td>

  3. #3
    Join Date
    Sep 2007
    Posts
    21

    Default Re: How to I add a headergrafic?

    Hello guys,
    In witch file do we have to make the change.
    Please advice,
    Thank you

  4. #4

    Default

    You need to edit header.tpl for adding headerimage

  5. #5
    Join Date
    Jul 2008
    Posts
    8

    Default Re: How to I add a headergrafic?

    Quote Originally Posted by buyscripts
    You can put the header image on


    <TABLE cellSpacing=0 border="0" cellPadding=0 width="100%" >
    <TR vAlign=center>
    <td align="right" width=212> here You header including logo</td>

    Or You can add as background like
    <td background="here your background" >Logo</td>
    I want to add a graphic behind the "SIGNUP / LOGIN" links in the header.
    I uploaded my image, added a "signup" class in style.css, put the login links in a table with the signup class tag and nada...

    I think maybe my problem is the css...? (I'm fairly sure the codes are right though)

    Any ideas why this isn't working?

    Thanks for your help!

  6. #6
    Join Date
    Jan 2008
    Location
    India
    Posts
    147

    Default Re: How to I add a headergrafic?

    you can see the html code using for signup/login in headder.tpl.See the following html code
    Code:
    <td>Sign Up</td>
    <td style="padding-right: 5px; padding-left: 5px; padding-bottom: 0px; padding-top: 0px">|</td>
    <td>Log In</td>
    It has only one simple css is working
    Code:
    "class="bold""
    .you can see this style.css.
    Code:
    .bold {
    font-weight: bold;
    }
    If you want to add a graphic behind the "SIGNUP / LOGIN" links in the header.
    just add a new css in style.css.
    nb:-Please clear me one thing. If you want to add a image in headder like http://sagre.tv/ or you want to add a small image in "SIGNUP / LOGIN" background

  7. #7
    Join Date
    Jul 2008
    Posts
    8

    Default Header.tpl: Image (SIGNUP/LOGIN background)

    Thanks for the reply,

    Quote Originally Posted by sanil
    Please clear me one thing. If you want to add a image in headder like http://sagre.tv/


    No.

    Quote Originally Posted by sanil
    or you want to add a small image in "SIGNUP / LOGIN" background
    Yes,

    I want a small graphic as the SIGNUP/LOGIN background.

    I could have been more clear.
    The suggestion I quoted previously is for an html background and that doesn't work for me.
    I need the background to be centered behind the SIGNUP links and not repeating.
    So it's gotta be css. Right?

    I added the class to stlye.css and haven't been able assign it to a table i put the SIGNUP/LOGIN code in...

    I havent had a chance to mess with it since my last post,
    I could try a span or div tag instead of a table?

    Thanks for your help.

  8. #8
    Join Date
    Jan 2008
    Location
    India
    Posts
    147

    Default Re: How to I add a headergrafic?

    here i will try the css for that change please wait for my replay
    ok
    thanks :D

  9. #9
    Join Date
    Jan 2008
    Location
    India
    Posts
    147

    Default Re: How to I add a headergrafic?

    add this code into your style.css
    Code:
    .bold_bg {
    background: transparent url(../images/your_image.jpg);
    background-repeat: repeat-x;
    background-color:#000000;
    font-weight: bold;
    }
    and replace the class="bold" into class="bold_bg"
    Code:
    <td>Sign Up</td>
    <td style="padding-right: 5px; padding-left: 5px; padding-bottom: 0px; padding-top: 0px">|</td>
    <td>Log In</td>
    ok

  10. #10
    Join Date
    Jul 2008
    Posts
    8

    Default Re: How to I add a headergrafic?

    Thanks for the help, but the CSS wouldn't work for some strange reason.

    I actually wanted the image to go across ALL the links in that section.
    I ended up putting a background image in a table (html)
    Then pasted the Signup/Login/RSS links into that.

    Would have been easier to adjust the position with css, but it looks the way I want it to now.
    Just had to upload, resize, upload, resize, etc...

    Thanks for the replies.

Page 1 of 2 12 LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •