WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You

WebArtz - The Web Design Forum
Welcome to WebArtz, Guest!

WebArtz is a nice place for discussions related to web designing and coding. We help our members to code their own website templates with HTML and CSS. We give them advice on various issues.

To know more about WebArtz Forum, visit the About Us page.

At the moment, you are viewing the forum as a guest. As a guest you can't make post and participate in discussions. You need to register and become a member of the forum. Click the register link below and become a part of this forum.

Thank You


You are not connected. Please login or register

View previous topic View next topic Go down  Message [Page 1 of 1]

1write something above forum in a corner! Empty write something above forum in a corner! Wed Jan 20, 2010 6:31 pm

shamzblueworld

shamzblueworld
Registered Member
Registered Member
hi guys, I want to know how can i write something above the forum in the two corners.See www.funstopforum.net in the right top corner below the ad banner is written about my last visit and time and date right? how can i write something above that? And how can i change that? I mean write something else instead of the date and time?
It surely be possible i think.

ankillien

ankillien
Administrator
Administrator
You can change all those stuff in index_box under general template.

You will find this in the template code...

Code:
<span class="gensmall">{LAST_VISIT_DATE}<br />
{CURRENT_TIME}<br />
</span>

{LAST_VISIT_DATE} displays the last visit date and {CURRENT_TIME} displays the time. You can remove those parts and add any code there.

Now you'll find this part...

Code:
<!-- BEGIN switch_user_logged_in -->
         <a class="gensmall" href="{U_SEARCH_NEW}">{L_SEARCH_NEW}</a><br />
         <a class="gensmall" href="{U_SEARCH_SELF}">{L_SEARCH_SELF}</a><br />
         <!-- END switch_user_logged_in -->
<a class="gensmall" href="{U_SEARCH_UNANSWERED}">{L_SEARCH_UNANSWERED}</a>

This code displays links on the right hand side. You can edit the href attributes and text between a tags.

shamzblueworld

shamzblueworld
Registered Member
Registered Member
and how to write something above the left corner? I want to give the link of mizilla firefox download there.

ankillien

ankillien
Administrator
Administrator
You can edit this code to add a link...

Code:
<span class="gensmall">{LAST_VISIT_DATE}<br />
{CURRENT_TIME}<br />
</span>

Remove the LAST_VISIT_DATE and put your link. The code will look like this...

Code:
<span class="gensmall"><a href="http://getfirefox.com">Firefox</a><br />
{CURRENT_TIME}<br />
</span>

Sanket

Sanket
Administrator
Administrator
Moved to the correct section

http://www.webartzforum.com

shamzblueworld

shamzblueworld
Registered Member
Registered Member
Thank you ani bhai that worked fine.
Now can you please tell how to edit the bottom links? I mean the links which comes below forums e.g. top 20 topics etc on the right and mark all forums read on the left?
I want to add links there.

ankillien

ankillien
Administrator
Administrator
Glad it worked Very Happy

For bottom links, go to index_body template and find this part...

Code:
<!-- BEGIN switch_delete_cookies -->
         <br /><a href="{switch_delete_cookies.U_DELETE_COOKIES}" class="gensmall">{switch_delete_cookies.L_DELETE_COOKIES}</a>
         <!-- END switch_delete_cookies -->
         </span>

You can add your link right BEFORE the </span>. Use this code..

Code:
<br /><a href="URL HERE" class="gensmall">TEXT HERE</a>

For right side links find this part...

Code:
      <td width="50%" align="right">
         <span class="gensmall">
            <a href="{U_TODAY_ACTIVE}" class="gensmall">{L_TODAY_ACTIVE}</a><br />
            <a href="{U_TODAY_POSTERS}" class="gensmall">{L_TODAY_POSTERS}</a><br />
            <a href="{U_OVERALL_POSTERS}" class="gensmall">{L_OVERALL_POSTERS}</a>

Add your link right AFTER this part of code. Use this code for link...

Code:
<br /><a href="URL HERE" class="gensmall">TEXT HERE</a>



Hope that helps Very Happy

shamzblueworld

shamzblueworld
Registered Member
Registered Member
thank you anki. Its solved now.

ankillien

ankillien
Administrator
Administrator
Glad I could helps Very Happy

Solved | Locked

Sponsored content


View previous topic View next topic Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum