minor glitches in footer
Forum rules
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
minor glitches in footer
Your Portal Version: 1.0.5
Your phpBB Type: Standard phpBB3
MODs installed: Yes
Your knowledge: Basic Knowledge
Boardlink: http://banata.net
What have you done before the problem was there?
installing portal
What have you already tryed to solve the problem?
nothing,
Description and Message
hello, after figure it out bout overall_header.html problem , i realize there are some glitches in footer
take a look :
see on the red box, it should be in the center and board3 portal links should be below the "powered by phpbb3.......bla....bla...bla" and all aligned to center
any clue, and thanx for your help
regards, GISfreak
Your phpBB Type: Standard phpBB3
MODs installed: Yes
Your knowledge: Basic Knowledge
Boardlink: http://banata.net
What have you done before the problem was there?
installing portal
What have you already tryed to solve the problem?
nothing,
Description and Message
hello, after figure it out bout overall_header.html problem , i realize there are some glitches in footer
take a look :
see on the red box, it should be in the center and board3 portal links should be below the "powered by phpbb3.......bla....bla...bla" and all aligned to center
any clue, and thanx for your help
regards, GISfreak
Re: minor glitches in footer
Want a clue ? ... Its in your CSS files.
But do you want to center all of it or is it just "board3 Portal - based on phpBB3 Portal" and "Advertisements by Advertisement Management" ?
/Ghostman
But do you want to center all of it or is it just "board3 Portal - based on phpBB3 Portal" and "Advertisements by Advertisement Management" ?
/Ghostman
Re: minor glitches in footer
i want to center all those string plus "board3 Portal - based on phpBB3 Portal" must be below "powered by phpbb3......."ghostman wrote:Want a clue ? ... Its in your CSS files.
But do you want to center all of it or is it just "board3 Portal - based on phpBB3 Portal" and "Advertisements by Advertisement Management" ?
/Ghostman
how to do that ?
Re: minor glitches in footer
Something like this ?
/Ghostman
/Ghostman
Last edited by ghostman on 23. May 2010 03:18, edited 2 times in total.
Re: minor glitches in footer
i can see your image, it said, "you are not authorized to view this image"ghostman wrote:Something like this ?
/Ghostman
oh yeah, i just notice, the alignment of that footer is because of my template
look here
demo:
Code: Select all
http://www.phpbb.com/styles/demo/3.0/index.php?style_id=995
oh yeah, in forum index, it loks like this
Re: minor glitches in footer
Changed link in preview post so I hope you can see it now
and yes it can be moved
/Ghostman
and yes it can be moved
/Ghostman
Re: minor glitches in footer
yes i can see it now, and whoah that's exactly what i wantghostman wrote:Changed link in preview post so I hope you can see it now
and yes it can be moved
/Ghostman
please please please teach me my friend
Re: minor glitches in footer
Okay
Open styles/rockn_roll/template/overall_footer.html
Find (yours look a bit different b.cos of the advertisement mod)
Replace with
After that then redo the advertisement mod edits for overall_footer.html
Open styles/rockn_roll/template/portal/portal_body.html
Find and remove
NOTE: I am not sure that moving the portal credits from portal_body.html to overall_footer.html is full legal, but I hope Marc can give an answer to that.
/Ghostman
Open styles/rockn_roll/template/overall_footer.html
Find (yours look a bit different b.cos of the advertisement mod)
Code: Select all
<div class="copyright">
<!-- IF U_ACP --><br /><center><strong><a href="{U_ACP}">[ {L_ACP} ]</a></strong></center><!-- ENDIF -->
<ul class="linklist">
<li>Powered by <a href="http://www.phpbb.com/">phpBB</a> © 2000, 2002, 2005, 2007 phpBB Group
<!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF --></li>
<li class="rightside"><!-- STYLE COPYRIGHT -->Style <b>Rock'n Roll</b> by <a href="http://phpbbportugal.com/" title=" phpBB Portugal " alt=" phpBB Portugal " target="_blank"><b>Vinny</b></a>
<!-- IF DEBUG_OUTPUT --><br />{DEBUG_OUTPUT}<!-- ENDIF --></li>
</ul>
</div>
Code: Select all
<div class="copyright">
<!-- IF U_ACP --><br /><center><strong><a href="{U_ACP}">[ {L_ACP} ]</a></strong></center><!-- ENDIF -->
</center>Powered by <a href="http://www.phpbb.com/">phpBB</a> © 2000, 2002, 2005, 2007 phpBB Group
<!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF -->
<!-- STYLE COPYRIGHT --><br />Style <b>Rock'n Roll</b> by <a href="http://phpbbportugal.com/" title=" phpBB Portugal " alt=" phpBB Portugal " target="_blank"><b>Vinny</b></a>
<!-- please keep this credits visible, thank you! --><br />{L_PORTAL_COPY}
<!-- IF DEBUG_OUTPUT --><br />{DEBUG_OUTPUT}<!-- ENDIF --></center>
</div>
Open styles/rockn_roll/template/portal/portal_body.html
Find and remove
Code: Select all
<!-- please keep this credits visible, thank you! -->
<br /><div class="copyright">{L_PORTAL_COPY}</div>
/Ghostman
Re: minor glitches in footer
thanx million times to you mate
you are the best
hum, i think i wont remove the portal credit, since i really admire the hard work from the mod author
can i just add center tag to those, portal credit, so i can center it ?
thanx again ghostman
you are the best
hum, i think i wont remove the portal credit, since i really admire the hard work from the mod author
can i just add center tag to those, portal credit, so i can center it ?
thanx again ghostman
Re: minor glitches in footer
Np I am glad I could help
I agree they do a great job here at board3portal
About the portal credits, you haven't removed them total, just moved them to another spot, so I think its okay, but I just want to hear the development teams opinion.
If you want to center the original credit text in portal_body.html, then yes, you can just add the center tag.
The center tag could also be added to the copyright class in common.css instead
And I just saw I made a typo error in my previews post.
Open styles/rockn_roll/template/overall_footer.html
Find (yours look a bit different b.cos of the advertisement mod)
in line
change to:
I agree they do a great job here at board3portal
About the portal credits, you haven't removed them total, just moved them to another spot, so I think its okay, but I just want to hear the development teams opinion.
If you want to center the original credit text in portal_body.html, then yes, you can just add the center tag.
Code: Select all
<!-- please keep this credits visible, thank you! -->
<br /><div class="copyright"><center>{L_PORTAL_COPY}</center></div>
And I just saw I made a typo error in my previews post.
Open styles/rockn_roll/template/overall_footer.html
Find (yours look a bit different b.cos of the advertisement mod)
Code: Select all
<div class="copyright">
<!-- IF U_ACP --><br /><center><strong><a href="{U_ACP}">[ {L_ACP} ]</a></strong></center><!-- ENDIF -->
</center>Powered by <a href="http://www.phpbb.com/">phpBB</a> © 2000, 2002, 2005, 2007 phpBB Group
<!-- IF TRANSLATION_INFO --><br />{TRANSLATION_INFO}<!-- ENDIF -->
<!-- STYLE COPYRIGHT --><br />Style <b>Rock'n Roll</b> by <a href="http://phpbbportugal.com/" title=" phpBB Portugal " alt=" phpBB Portugal " target="_blank"><b>Vinny</b></a>
<!-- please keep this credits visible, thank you! --><br />{L_PORTAL_COPY}
<!-- IF DEBUG_OUTPUT --><br />{DEBUG_OUTPUT}<!-- ENDIF --></center>
</div>
Code: Select all
</center>Powered by <a href="http://www.phpbb.com/">phpBB</a> © 2000, 2002, 2005, 2007 phpBB Group
Code: Select all
<center>Powered by <a href="http://www.phpbb.com/">phpBB</a> © 2000, 2002, 2005, 2007 phpBB Group
Re: minor glitches in footer
DONE...........!!!
thanx again mate......you save my day
thanx again mate......you save my day