Athena9188
Beginner


Joined: Oct 15, 2007 Posts: 2
|
Posted: Mon Oct 15, 2007 3:34 pm Post subject: Link not showing |
|
|
| I seem to have integrated phpbb2 successfully with gallery2. However, the only problem i have is that the link for gallery 2 doesn't show up in phpbb2. There is no link in the header or anything. |
|
josh27
Beginner


Joined: Oct 12, 2007 Posts: 6
|
Posted: Wed Oct 24, 2007 7:47 am Post subject: Re: Link not showing |
|
|
you have to modify the overall_header.tpl and subSilver.css ...
like this...
templates/subSilver/subSilver.css
#
#-----[ FIND ]------------------------------------------
#
scrollbar-darkshadow-color: #98AAB1;
}
#
#-----[ AFTER, ADD ]------------------------------------------
#
#gsNavBar div.gbBreadCrumb {
font-size: 1.6em;
}
span.block-core-SystemLink {
font-size: 1.6em;
}
#
#-----[ FIND ]------------------------------------------
#
font,th,td,p { font-family: Verdana, Arial, Helvetica, sans-serif }
#
#-----[ IN-LINE FIND ]------------------------------------------------
#
font-family:
#
#-----[ IN-LINE BEFORE, ADD ]-----------------------------
#
font-size: 10px;
templates/subSilver/overall_header.tpl
#
#-----[ FIND ]------------------------------------------
#
<!-- link rel="stylesheet" href="templates/subSilver/{T_HEAD_STYLESHEET}" type="text/css" -->
#
#-----[ BEFORE, ADD ]------------------------------------------
#
{GALLERY2_JAVASCRIPT}
{GALLERY2_CSS}
<!-- BEGIN switch_phpbb_base -->
<base href="{switch_phpbb_base.PHPBB_BASE}">
<!-- END switch_phpbb_base -->
#
#-----[ FIND ]------------------------------------------
#
scrollbar-darkshadow-color: {T_TH_COLOR1};
}
#
#-----[ AFTER, ADD ]------------------------------------------
#
#gsNavBar div.gbBreadCrumb {
font-size: 1.6em;
}
span.block-core-SystemLink {
font-size: 1.6em;
}
#
#-----[ FIND ]------------------------------------------
#
font,th,td,p { font-family: {T_FONTFACE1} }
#
#-----[ IN-LINE FIND ]------------------------------------------------
#
font-family:
#
#-----[ IN-LINE BEFORE, ADD ]-----------------------------
#
font-size: {T_FONTSIZE1}px;
#
#-----[ FIND ]------------------------------------------
#
<img src="templates/subSilver/images/icon_mini_login.gif" width="12" height="13" border="0" alt="{L_LOGIN_LOGOUT}" hspace="3" />{L_LOGIN_LOGOUT}
#
#-----[ AFTER, ADD ]------------------------------------------
#
<img src="templates/subSilver/images/exif_parser.gif" border="0" alt="{L_GALLERY2}" hspace="3" />{L_GALLERY2} |
|