 | Re: [Solved] Is there any chance of you helping me integrate phpbb forum software into my personal site? |  |
Posted: 04/18/2007 5:24 PM |
|
|
|
|
|
| Citation |
| Posts |
1332 |
| Word Cnt. |
86,126 |
| BDay |
Feb 11 |
| Sign |
Aquarius |
| Sex |
 |
|
|
|
Joined: Mar 31, 2007
Local time: 8:29 AM
Location: Birmingham, UK.
|

|
|
|
|
 |
Is there any way of changing the light blue to the new blue colour and also change the black text to white so that it matches how the other headers look? http://www.christopher-powell.co.uk/forum/links.php Suppose I’d have to make the Submit Your Site link white too  |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Is there any chance of you helping me integrate phpbb2 forum software into my personal website.. |  |
Posted: 04/18/2007 10:16 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 3:29 AM
Location: St Pete, FL
|

|
|
|
|
 |
Ok, check it now. I created a new class in your overall_header.tpl file named cattitle2 and assigned it to the "Submit Your Site" link because there were no link classes created where you could read the text on that background. I originally assigned it to white, but it was difficult to see that there was a clickable link there, so I changed it to gray. You can change it to any color that you want though...
So this is what I did:
OPEN
overall_header.tpl
ADD
| Code:
|
/* Forum category titles */
.cattitle2 { font-weight: bold; font-size: {T_FONTSIZE3}px; letter-spacing: 1px; color : #FFFFFF; }
a.cattitle2 { font-weight: bold; font-size: {T_FONTSIZE3}px; letter-spacing: 1px; text-decoration: none; color : #CCCCCC; }
a.cattitle2:hover{ text-decoration: underline; }
|
OPEN
link_exchange.tpl
FIND
| Code:
|
|
<td class="catHead" height="25"><div align="center"><span class="genlarge">{LINK_EXCHANGE} </span><span class="gensmall"><b>- <a href="{U_LINK_EXCHANGE_SUBMIT}" alt="LINK_EXCHANGE_SUBMIT">{LINK_EXCHANGE_SUBMIT}</a></b></span></div> </td>
|
REPLACE WITH
| Code:
|
|
<th class="thTop" height="25"><div align="center">{LINK_EXCHANGE}<b>- <a href="{U_LINK_EXCHANGE_SUBMIT}" class="cattitle2" alt="LINK_EXCHANGE_SUBMIT">{LINK_EXCHANGE_SUBMIT}</a></b></div></th>
|
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: [Solved] Is there any chance of you helping me integrate phpbb forum software into my personal site? |  |
Posted: 04/19/2007 3:48 PM |
|
|
|
|
|
| Citation |
| Posts |
1332 |
| Word Cnt. |
86,126 |
| BDay |
Feb 11 |
| Sign |
Aquarius |
| Sex |
 |
|
|
|
Joined: Mar 31, 2007
Local time: 8:29 AM
Location: Birmingham, UK.
|

|
|
|
|
 |
Kewl.
What I'd like to do is Change the text from
| Quote:
|
|
DJ Chris Powell - Link Exchange-
|
to just the
link
Also how do I change the Submit Your Site link to white? I'd just like to see how it looks  |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Is there any chance of you helping me integrate phpbb2 forum software into my personal website.. |  |
Posted: 04/19/2007 4:14 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 3:29 AM
Location: St Pete, FL
|

|
|
|
|
 |
To change it to white, do this:
OPEN
overall_header.tpl
FIND
| Code:
|
|
a.cattitle2 { font-weight: bold; font-size: {T_FONTSIZE3}px; letter-spacing: 1px; text-decoration: none; color : #CCCCCC; }
|
REPLACE WITH
| Code:
|
|
a.cattitle2 { font-weight: bold; font-size: {T_FONTSIZE3}px; letter-spacing: 1px; text-decoration: none; color : #FFFFFF; }
|
FFFFFF is white and 000000 is black in hex code. Of course as you could see, CCCCCC is gray...
To make it so that it only says Submit your Site, do this:
OPEN
link_exchange.tpl
FIND
| Code:
|
|
<th class="thTop" height="25"><div align="center">{LINK_EXCHANGE}<b>- <a href="{U_LINK_EXCHANGE_SUBMIT}" class="cattitle2" alt="LINK_EXCHANGE_SUBMIT">{LINK_EXCHANGE_SUBMIT}</a></b></div></th>
|
REPLACE WITH
| Code:
|
|
<th class="thTop" height="25"><div align="center"><b><a href="{U_LINK_EXCHANGE_SUBMIT}" class="cattitle2" alt="LINK_EXCHANGE_SUBMIT">{LINK_EXCHANGE_SUBMIT}</a></b></div></th>
|
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: [Solved] Is there any chance of you helping me integrate phpbb forum software into my personal site? |  |
Posted: 04/19/2007 4:32 PM |
|
|
|
|
|
| Citation |
| Posts |
1332 |
| Word Cnt. |
86,126 |
| BDay |
Feb 11 |
| Sign |
Aquarius |
| Sex |
 |
|
|
|
Joined: Mar 31, 2007
Local time: 8:29 AM
Location: Birmingham, UK.
|

|
|
|
|
 |
Sorry NR I meant this
What I'd like to do is Change the text from
| Quote:
|
|
DJ Chris Powell - Link Exchange-
|
to just
but then have the Submit Your Site link to show in-line after
This is what I mean... had a long day mate
I'll try the colour change now
I found this colour chart earlier http://www.immigration-usa.com/html_colors.html  |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Is there any chance of you helping me integrate phpbb2 forum software into my personal website.. |  |
Posted: 04/19/2007 4:58 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 3:29 AM
Location: St Pete, FL
|

|
|
|
|
 |
We also have a couple of Hex Code picker utlities installed here. Here are two links to choose from:
To remove DJ Chris Powell from the header, you can do this:
OPEN
links.php
FIND
| Code:
|
|
$page_title = '' . $sitename . 'Link Exchange';
|
REPLACE WITH
| Code:
|
|
$page_title = 'Link Exchange';
|
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: [Solved] Is there any chance of you helping me integrate phpbb forum software into my personal site? |  |
Posted: 04/19/2007 6:07 PM |
|
|
|
|
|
| Citation |
| Posts |
1332 |
| Word Cnt. |
86,126 |
| BDay |
Feb 11 |
| Sign |
Aquarius |
| Sex |
 |
|
|
|
Joined: Mar 31, 2007
Local time: 8:29 AM
Location: Birmingham, UK.
|

|
|
|
|
 |
I’ve just overwritten my links page for the website with the phpBB links exchange one
I don't have a backup of the website links page either  |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Is there any chance of you helping me integrate phpbb2 forum software into my personal website.. |  |
Posted: 04/19/2007 9:36 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 3:29 AM
Location: St Pete, FL
|

|
|
|
|
 |
Which file did you overwrite? I have backups of your files...
 |
|
|
 |
 |
| Back to Top |
|
|
 | Re: [Solved] Is there any chance of you helping me integrate phpbb forum software into my personal site? |  |
Posted: 04/20/2007 4:49 AM |
|
|
|
|
|
| Citation |
| Posts |
1332 |
| Word Cnt. |
86,126 |
| BDay |
Feb 11 |
| Sign |
Aquarius |
| Sex |
 |
|
|
|
Joined: Mar 31, 2007
Local time: 8:29 AM
Location: Birmingham, UK.
|

|
|
|
|
 |
I've overwritten the links page that was in /htdocs with the phpBB Exchange Links page. I didn't mean to do this but that dam smartFTP loaded up with the wrong folder if I never have had such I long day I would have been more awake and would've changed to the correct folder
I don't suppose you have a backup of the file below, then NR
http://www.christopher-powell.co.uk/links.php |
|
|
 |
 |
| Back to Top |
|
|
 | Re: Is there any chance of you helping me integrate phpbb2 forum software into my personal website.. |  |
Posted: 04/20/2007 1:39 PM |
|
|
|
|
|
| Site Admin |
| Posts |
30757 |
| Word Cnt. |
2,628,690 |
| BDay |
Jul 28 |
| Sign |
Leo |
| Sex |
 |
|
|
|
Joined: Sep 25, 2004
Local time: 3:29 AM
Location: St Pete, FL
|

|
|
|
|
 |
No, I don't have a backup for that links.php file. I do have a backup of the links.php file stored in your forum. But that doesn't seem to have a problem...
http://www.christopher-powell.co.uk/forum/links.php
Where did this other links.php file come from???
 |
|
|
 |
 |
| Back to Top |
|
|
 | Information |  |
|