71
angaran
Re: How can I make modules logo??
  • 2003/12/31 18:29

  • angaran

  • Not too shy to talk

  • Posts: 103

  • Since: 2003/8/17


I'll be very happy if you do it.
A lot of thanks!!!

P.S.:Yes, the Photoshop file is good.



72
angaran
How can I make modules logo??
  • 2003/12/31 15:33

  • angaran

  • Not too shy to talk

  • Posts: 103

  • Since: 2003/8/17


Hello, i'm looking for the font or the template used to make the images like this:

Resized Image


Can you help me??



73
angaran
Where can I find the font used to make the "Downloads" image?
  • 2003/12/30 17:06

  • angaran

  • Not too shy to talk

  • Posts: 103

  • Since: 2003/8/17


Hello, i'm looking for the font or the template used to make the images like this:

Resized Image

Can you help me??



74
angaran
Re: Writing news with tables: how???
  • 2003/12/26 19:30

  • angaran

  • Not too shy to talk

  • Posts: 103

  • Since: 2003/8/17


It doesn't work. I'm getting crazy on it!!!!!!!
Do you know if there is any way to bypass the theme???
This bug is caused by the theme that make all tables widht at 100%. Aaaaaaaargh!



75
angaran
Writing news with tables: how???
  • 2003/12/26 17:53

  • angaran

  • Not too shy to talk

  • Posts: 103

  • Since: 2003/8/17


How can I write news with tables??
I'm going to explaine:
when I make a news with a normal table with html table tag in the news page I always see a 100% width table even if I set the width at 200, for example. What's the problem?? Is there anyway to solve this?



76
angaran
Re: How can I make sidebars don't appear in forum module?
  • 2003/12/20 19:59

  • angaran

  • Not too shy to talk

  • Posts: 103

  • Since: 2003/8/17


But I want to see, for example, wh's online in the search page but i don't want to see it in the forum page. What's the way to do this??



77
angaran
How can I make sidebars don't appear in forum module?
  • 2003/12/20 19:04

  • angaran

  • Not too shy to talk

  • Posts: 103

  • Since: 2003/8/17


Just a simple question!!
Is there a way to remove sidebars from the forum module?
I tried associating each block to every module I want but doing this I can't see side blocks in pages like search and login pages.
what can I do?
Look at my site if you want to know more about this problem and try to use the search block in the home page: Upyou.it
This is a portion of the code of my theme.html. file:



<table cellspacing="0">      <tr>      <{if $xoops_lblocks}>              <td id="leftcolumn">          <!-- Start left blocks loop -->  <{foreach item=block from=$xoops_lblocks}>      <{include file="blue/theme_blockleft.html"}>  <{/foreach}>          <!-- End left blocks loop -->          </td>      <{/if}>          <td id="centercolumn">  <!-- Display center blocks if any -->  <{if $xoops_showcblock == 1}>              <table cellspacing="0">                  <tr>                      <td id="centerCcolumn" colspan="2">                        <!-- Start center-center blocks loop -->  <{foreach item=block from=$xoops_ccblocks}>      <{include file="blue/theme_blockcenter_c.html"}>  <{/foreach}>                      <!-- End center-center blocks loop -->                        </td>                    </tr>                    <tr>                      <td id="centerLcolumn">                        <!-- Start center-left blocks loop -->  <{foreach item=block from=$xoops_clblocks}>      <{include file="blue/theme_blockcenter_l.html"}>  <{/foreach}>                      <!-- End center-left blocks loop -->                      </td>                      <td id="centerRcolumn">                        <!-- Start center-right blocks loop -->  <{foreach item=block from=$xoops_crblocks}>      <{include file="blue/theme_blockcenter_r.html"}>  <{/foreach}>                      <!-- End center-right blocks loop -->                      </td>                  </tr>              </table>  <{/if}>  <!-- End display center blocks -->              <div id="content"><{$xoops_contents}></div>          </td>  <{if $xoops_showrblock == 1}>          <td id="rightcolumn">          <!-- Start right blocks loop -->  <{foreach item=block from=$xoops_rblocks}>      <{include file="blue/theme_blockright.html"}>  <{/foreach}>          <!-- End right blocks loop -->          </td>  <{/if}>  </tr>  </table>




78
angaran
Re: Dates in Smarty????
  • 2003/11/22 19:46

  • angaran

  • Not too shy to talk

  • Posts: 103

  • Since: 2003/8/17


Thank you, but i just solved the problem with a big php code made by me. It was an hard battle but in the end I made it!!!!
this is the link to my site:
www.upyou.it

It works!!!

The code in php file:

$data1=strftime("%d/%m/%Y",time());

$temp=substr ($story['posttime'] , 0 ,10);
if ($data1{0}=="0"){
$data1= substr($data1,1,10);
if ($data1{2}=="0"){
$data1=$data1{0}.$data1{1}.substr($data1,3,9);
}
}
else {
if ($data1{3}=="0"){
$data1=substr($data1,0,3).substr($data1,4,9);
}
}
$data2=$temp;
$new = (strncmp($data1,$data2,strlen($data1))==0) ? "yes" : "no";
$story['new']=$new;

Not very smart but I don't know php so this is the best I can do!!
Bye



79
angaran
Re: Dates in Smarty????
  • 2003/11/22 17:14

  • angaran

  • Not too shy to talk

  • Posts: 103

  • Since: 2003/8/17


It doesn't work because date('d', $posttime)) is always "01".
What do you think about that??
Any other solution??



80
angaran
Dates in Smarty????
  • 2003/11/22 14:25

  • angaran

  • Not too shy to talk

  • Posts: 103

  • Since: 2003/8/17


How can I compare two dates in smarty?
This is the code of the news_item.html file, modified by me.
$story.posttime was created by XOOPS developpers.
What should I do if I want to compare today day, month and year with the ones in $story.posttime??
I just want "news!!!" is printed when the news has been posted the same day you visit the page.
Ah, $story.posttime is printed in this format:
22/11/2003 16:10:58

<div class="item">
<div class="itemHead"><span class="itemTitle"><{$story.title}>
<{if $smarty.now==$story.posttime}>
new!!!
<{/if}>
<{$story.posttime}>
</span></div>
<div class="itemInfo">
<span class="itemPoster"><{$lang_postedby}> <{$story.poster}></span> <span class="itemPostDate"><{$lang_on}> <{$story.posttime}></span> (<span class="itemStats"><{$story.hits}> <{$lang_reads}></span>)
</div>
<div class="itemBody">
<table><{$story.imglink}>
<p class="itemText"><{$story.text}></p></table>
</div>
<div class="itemFoot">
<span class="itemAdminLink"><{$story.adminlink}></span> <span class="itemPermaLink"><{$story.morelink}></span>
</div>
</div>

I hope you can give an answer
Bye.




TopTop
« 1 ... 5 6 7 (8)



Login

Who's Online

178 user(s) are online (104 user(s) are browsing Support Forums)


Members: 0


Guests: 178


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: May 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits