Support for PhpBB3.
Post here to get help with any phpBB3 related issue
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
If not your topic may be ignored or locked!
Post
by BAT » 03 May 2010, 16:08
I have a issue again
I want to place two links tobe placed in aparticular position in a partilucar way ...
link 1
Code: Select all
<a href="http://www.freeshoutbox.net/addarthek&hl=1&PHPSESSID=rrjh302idav191qbrbrc621pt2"><b>Antena</b></a>
link 2
Code: Select all
<a href="javascript:var%20d=document,f='http://trivuz.com/bangla/trivuzpad.php';%20{a=function()%20{if%20(!window.open(f,'banglakb','toolbar=0,status=0,resizable=0,width=500,height=590'))l.href=f};if%20(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else{a()}}void(0);"><img src="http://trivuz.com/bangla/trivuzpad.png" border="0" title="ইউনিকোডে বাংলা টাইপ করতে - ত্রিভুজ প্যাড"></a>
I want these two link to be place in the same line but link1 on the left and link2 on the right side of the page .
example :
In this examplepic.jpg the two green marked areas below the
current time and
last visited
examplepic.jpg
Post
by cisco007 » 04 May 2010, 04:35
try this
open index_body.html
Find:
Code: Select all
<p class="{S_CONTENT_FLOW_END}<!-- IF S_USER_LOGGED_IN --> rightside<!-- ENDIF -->"><!-- IF S_USER_LOGGED_IN -->{LAST_VISIT_DATE}
<!-- ELSE -->{CURRENT_TIME}<!-- ENDIF --></p>
<!-- IF U_MCP --><p>{CURRENT_TIME} <br />[ <a href="{U_MCP}">{L_MCP}</a> ]</p><!-- ELSEIF S_USER_LOGGED_IN --><p>{CURRENT_TIME}</p><!-- ENDIF -->
Add after:
Code: Select all
<p class="{S_CONTENT_FLOW_END}<!-- IF S_USER_LOGGED_IN --> rightside<!-- ENDIF -->"><!-- IF S_USER_LOGGED_IN -->{LAST_VISIT_DATE}
<!-- ELSE -->{CURRENT_TIME}<!-- ENDIF --><!-- IF S_USER_LOGGED_IN --><br /><a href="javascript:var%20d=document,f='http://trivuz.com/bangla/trivuzpad.php';%20{a=function()%20{if%20(!window.open(f,'banglakb','toolbar=0,status=0,resizable=0,width=500,height=590'))l.href=f};if%20(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else{a()}}void(0);"><img src="http://trivuz.com/bangla/trivuzpad.png" border="0" title="???????? ????? ???? ???? - ??????? ?????"></a><!-- ENDIF --></p>
<!-- IF U_MCP --><p>{CURRENT_TIME}<!-- IF S_USER_LOGGED_IN --><br /><a href="http://www.freeshoutbox.net/addarthek&hl=1&PHPSESSID=rrjh302idav191qbrbrc621pt2"><b>Antena</b></a> <!-- ENDIF --><br />[ <a href="{U_MCP}">{L_MCP}</a> ]</p><!-- ELSEIF S_USER_LOGGED_IN --><p>{CURRENT_TIME}</p><!-- ENDIF -->
They will only be shown when you are logged in, it's late here, tomorrow, i will take a look to see if i can get them to show for guests if you want!
Post
by BAT » 04 May 2010, 07:09
Oh sure , good night
and right you are
I want this so that guests can also access .
my boards link is :
http://bangaliaddarthek.bangalaforum.ho ... /index.php
I have done it by using table , the code is given below
Code: Select all
<table width="100%">
<tr>
<td><A HREF="javascript:antenawindow()" ><IMG SRC="http://bangaliaddarthek.bangalaforum.hostzi.com/images/antena_white.png" border="0" title="Antena - Chatbox"></A></td>
<td align="right"><a href="javascript:var%20d=document,f='http://trivuz.com/bangla/trivuzpad.php';%20{a=function()%20{if%20(!window.open(f,'banglakb','toolbar=0,status=0,resizable=0,width=500,height=590'))l.href=f};if%20(/Firefox/.test(navigator.userAgent))setTimeout(a,0);else{a()}}void(0);"><img src="http://trivuz.com/bangla/trivuzpad.png" border="0" title="???????? ????? ???? ???? - ??????? ?????"></a></td>
</tr>
</table>
if you have any other way out for this it would be nice , as I'm not satisfied with this table thing
Last edited by BAT on 04 May 2010, 07:10, edited 1 time in total.