Jump to content

Changing the header ...


hooplah

Recommended Posts

Hello, I'm going to make this as simple as I can: I want to change the global header for all the pages that WHMCS displays. I want to put my own banner and navigation into WHMCS so that both the main site and the script are integrated with each other. I'd really appreciate any help.

 

Cheers,

Max

Link to comment
Share on other sites

I'm having another issue related to CSS. If you go to the WHMCS @ http://www.apocahost.com/whmcs you'll see that the navigation banner is acting up weirdly. I want it to underline a link when hovered over, among other things defined with the following css code:

 

td.mynav a:hover {

text-decoration: underline;

color: #000;

}

 

td.mynav a:visited {

text-decoration: none;

color: #000;

 

}

 

td.mynav a:active {

text-decoration: none;

 

}

 

However, it's not even half working. Some of the links remain permanently underlined for some reason and I've been trying to figure out how to fix this for at least two hours now, no luck whatsoever.

Link to comment
Share on other sites

Oh, there's also one small issue with the footer. I want the text to be the same on both sides yet on the left the text is the wrong font, size and color. The footer css is the following...

 

.footer3 {

 

 

margin-top: 50px;

color: #FFF;

text-indent: 25px;

font-size: 15px;

vertical-align: middle;

font-family: Verdana, Geneva, sans-serif

 

 

}

 

 

.footer2 {

 

 

color: #FFF;

text-indent: 25px;

font-size: 15px;

verticla-align: middle;

font-family: Verdana, Geneva, sans-serif;

text-align: right;

padding-right: 25px;

 

}

Link to comment
Share on other sites

Change the table code in your footer to:

<table align="center" border="0" cellpadding="0" cellspacing="0" height="55px" width="100%">
 <tr>
   <td class="footer3">Copyright © 2009-2010, Apocahost.com</td>
   <td class="footer2" bgcolor="080808">Design by Apocahost.com</td>
 </tr>
</table>

Link to comment
Share on other sites

As solution you can change 83 of your stylesheet to:

body{background-color:#080808;background-image:url(images/bg_background.gif);background-repeat:repeat-x;margin:0;padding:0;}

 

And create a div around the <div id="content_container">[...]</div> container for the right background:

<div style="background-color: #369;">
<div id="content_container">
[...]
</div>
</div>

 

For the background issue in the footer, just add the background in the footer2 and footer3 part of your stylesheet:

background-color:#080808;

 

For the copyright symbol, use:

 169; (remove the space)

 

Well, that's a complete WHMCS integration what I'm explaining. I should charge you. ;)

Edited by m00
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated