Icy Phoenix

     
 


Post new topic  Reply to topic 
Page 1 of 1
 
 
Reply with quote Download Post 
Post [SOLVED] Asking Again! ?? 
 
Various questions again :D:

1.- How can I edit the archive of the "news section"? because I need change the color of the comments of the notices, but I "can't" change it because is the same color of the notices title and the forums-subforums title.  (Look the image):

http://img234.imageshack.us/img234/8273/ddddvo5.jpg
 



 
Last edited by Guest on Mon 02 Jun, 2008 12:37; edited 2 times in total 
SarkenSend private message  
Back to topPage bottom
Icy Phoenix is an open source project, you can show your appreciation and support future development by donating to the project.

Support us
 
Reply with quote Download Post 
Post Re: Asking Again! ¬¬ 
 
Give me a link to your site and I'll check.
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Asking Again! ¬¬ 
 
www.aoc-world.net

Thx MG
 




____________
[img]http://img81.imageshack.us/img81/3319/kh2tn9.jpg[/img]
? XoX - Administrador www.d2hackit.net - phpBB 2.0.22
? XoX - WebMaster www.psphackit.net - Icy Phoenix
 
xoxSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Asking Again! ¬¬ 
 
You are the same user using two different accounts?
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Asking Again! ¬¬ 
 
No! ^^. We are the admins of the web. Look the IP if you don't believe me.
 



 
SarkenSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Asking Again! ¬¬ 
 
Open and edit your templates/fk_themes/blocks/news_block.tpl

In particular you need to edit this part:
Code: [Download] [Hide] [Select]
        <!-- BEGIN comments -->
        <table class="empty-table" width="100%" cellspacing="0" cellpadding="0" border="0">
        <tr>
            <td>
            <div align="left" style="border: #dddddd solid 1px; padding: 10px; margin: 10px 0 10px 0px; clear: both;">
                <div class="forumlink">{comments.L_TITLE}</div>
                <div class="post-details">{comments.POST_DATE} {L_BY} {comments.L_POSTER}</div>
                <div class="post-text">
                <br /><span>{comments.BODY}</span>
                </div>
            </div>
            </td>
        </tr>
        </table>
        <!-- END comments -->


It is HTML you can add background or any other effects you need to make it readable.
 




____________
Luca
SEARCH is the quickest way to get support.
Icy Phoenix ColorizeIt - CustomIcy - HON
 
Mighty GorgonSend private messageSend e-mail to userVisit poster's website  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Asking Again! ¬¬ 
 
Thank you, I was a little cumbersome, but what changes when I have more free time

Thx again, and other question.

    
the file can not change the properties of pagination, or the legend of moderators. add image:

ayudavj5

but in viewforum.tpl these changes are correct. Why does this happen?

Thx 4 u help
 




____________
[img]http://img81.imageshack.us/img81/3319/kh2tn9.jpg[/img]
? XoX - Administrador www.d2hackit.net - phpBB 2.0.22
? XoX - WebMaster www.psphackit.net - Icy Phoenix
 
xoxSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Asking Again! ¬¬ 
 
Hi Sarken,

In common.css find this group: (

.gen
.genmed  
.gensmall
.gennull

Change:

.gen { font-size: 12px;

To:

.gen { color:#00ff00; font-size: 12px;

And all the gen - text will be a nice green. Page numbers too.  

The same with the other three text classes.

Use 00FF00 - FF00FF - 0000FF - FF0000 to identify what text is affected where, as they are all disgustingly "Bright"  

Then you can change them to what you want.

BTW: Your theme looks great - but it's breaking in IE7, and that could be the LONG topic titles that are pushing the tables to the right. Similar problems with FF.
 
 
 
Back to topPage bottom
Reply with quote Download Post 
Post Re: Asking Again! ¬¬ 
 
does not work  

Code: [Download] [Hide]
  1. .gen {color: # 00FF00; font-size: 12px; }  
  2. .genmed { color: # 00FF00; font-size: 11px; }  
  3. .gensmall { color: # 00FF00; font-size: 10px; }  
  4. .gennull{ color: # 00FF00; font-size: 0px; } 

 




____________
[img]http://img81.imageshack.us/img81/3319/kh2tn9.jpg[/img]
? XoX - Administrador www.d2hackit.net - phpBB 2.0.22
? XoX - WebMaster www.psphackit.net - Icy Phoenix
 
xoxSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: Asking Again! ¬¬ 
 
I can see that the code above is not going to work because "style" is trying to read 7 places between the # and the ;  

Try this:

Code: [Download] [Hide] [Select]
.gen { color: #FF0000; font-size: 12px; }
.genmed {color: #0000FF; font-size: 11px; }
.gensmall {color: #FF00FF; font-size: 10px; }
.gennull{color: #00FF00; font-size: 0px; }


Edit: Though this script will work, it's not suitable; as it affects too much other text that uses the gen classes.

The only other thing is to edit all templates where the text has to be changed to a different colour from the body, and add extra classes.  
 
 
 
Back to topPage bottom
Reply with quote Download Post 
Post Re: Asking Again! ¬¬ 
 
It's nice to see the "new" theme up and running!  

In the portal you have a block that contains this "Partial" line (Because I can't find it in the default templates)

Code: [Download] [Hide] [Select]
                <div style="text-align: right; padding: 10px; margin: 10px 0 10px 20px; clear: both;"><span class="pagination">


Change it to:

Code: [Download] [Hide] [Select]
                <div style="text-align: right; padding: 10px; margin: 10px 0 10px 20px; clear: both;" class="gen2"><span class="pagination">    


And that will fix the pagination colours in the portal.

You also have something (The last Block) not closed off, and it's breaking the footer in IE7 - (Didn't check FF), I also suspect that it is this:

h**p://***.aoc-world.net/files/thum...La_embajada.png

 
 
 
 
Back to topPage bottom
Reply with quote Download Post 
Post Re: Asking Again! ¬¬ 
 


After much digging around, the string above for the pagination is at the bottom of news_block.tpl, so if you change that; that's about the last thing I can see that needs fixing - (For Now)?

And it is your added graphics (too wide for the tables) in the Portal that is breaking the footer.
 
 
 
Back to topPage bottom
Reply with quote Download Post 
Post Re: [SOLVED] Asking Again! ¬¬ 
 
I have noticed that you are working in something "bigger" about our theme. Is that true?

If it's true, could you show a bit of the work?

Another question:

You probably have noticed about an error on the title of the sub-forums, look at this image:

http://www.aoc-world.net/posted_img...%2Ffororyb3.jpg

The title of the actives sub-forums dissapear! ^^.

Please, we need to solve that error.

Finally, we have another error in the replies to the "News". The background is black, and we can't read the message. Look at this:

http://www.aoc-world.net/index.php?topic_id=428


That's all. Thanks a bunch again, Lopalong. See you ;).
 



 
SarkenSend private message  
Back to topPage bottom
Reply with quote Download Post 
Post Re: [SOLVED] Asking Again! ¬¬ 
 
Sarken wrote: [View Post]
I have noticed that you are working in something "bigger" about our theme. Is that true?

If it's true, could you show a bit of the work?


I'm not doing anything "Bigger" with your theme, I'm creating a different "more-extreme" style Conan Theme, that includes a header-switcher as one Nav's through the pages.

Demo: h**p://icythemes.com/ip/index.php

Quote:


Another question:

You probably have noticed about an error on the title of the sub-forums, look at this image:

h**p://***.aoc-world.net/posted_img...%2Ffororyb3.jpg
The title of the actives sub-forums dissapear! ^^.

Please, we need to solve that error.


The image is "Kaput" and I don't have access to your sub-forums.

They don't disappear, they are just the wrong colours after they have been visited.

I did say that you were going to have some more colour problems, I also thought that you were capable of fixing some of these yourself ?

Quote:

Finally, we have another error in the replies to the "News". The background is black, and we can't read the message. Look at this:

h**p://***.aoc-world.net/index.php?topic_id=428



Here's a fix for it.

Spoiler: [ Show ]


Please remember the class-changes, as you will probably need to apply them somewhere else as you come to any other problems.

Quote:

That's all. Thanks a bunch again, Lopalong. See you ;).

 
 
 
Back to topPage bottom
Post new topic  Reply to topic  Page 1 of 1
 


Display posts from previous:    

HideWas this topic useful?

Link this topic
URL
BBCode
HTML




 
Permissions List
You cannot post new topics
You cannot reply to topics
You cannot edit your posts
You cannot delete your posts
You cannot vote in polls
You cannot attach files
You can download files
You cannot post calendar events


  

 

  cron