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
[SOLVED] Asking Again! ??
Subject: [SOLVED] Asking Again! ??
Last edited by Guest on Mon 02 Jun, 2008 12:37; edited 2 times in total
Last edited by Guest on Mon 02 Jun, 2008 12:37; edited 2 times in total
Subject: Re: Asking Again! ¬¬
No! ^^. We are the admins of the web. Look the IP if you don't believe me. :)
Subject: Re: Asking Again! ¬¬
Open and edit your templates/fk_themes/blocks/news_block.tpl
In particular you need to edit this part:
It is HTML you can add background or any other effects you need to make it readable.
In particular you need to edit this part:
<!-- 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 -->
<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.
Subject: 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:
but in viewforum.tpl these changes are correct. Why does this happen?
Thx 4 u help
Thx again, and other question.
the file can not change the properties of pagination, or the legend of moderators. add image:

but in viewforum.tpl these changes are correct. Why does this happen?
Thx 4 u help
Subject: 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. ;) :P
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" :shock:
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. :(
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. ;) :P
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" :shock:
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. :(
Subject: 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: ;)
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. :shock:
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; }
.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. :shock:
Subject: Re: Asking Again! ¬¬
It's nice to see the "new" theme up and running! :mricy:
In the portal you have a block that contains this "Partial" line (Because I can't find it in the default templates) ;)
Change it to:
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
:mricy:
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
:mricy:
Subject: Re: Asking Again! ¬¬
:mricy:
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. :(
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. :(
Subject: 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 ;).
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 ;).
Subject: Re: [SOLVED] Asking Again! ¬¬
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
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. :P
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 ?
Here's a fix for it. ;)
Please remember the class-changes, as you will probably need to apply them somewhere else as you come to any other problems. :P
Sarken wrote: [View Post]
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:
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. :P
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:
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. :P
Quote:
Page 1 of 1
You cannot post new topicsYou 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
This is a "Lo-Fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by Icy Phoenix based on phpBB
Generation Time: 0.1069s (PHP: 20% SQL: 80%)
SQL queries: 14 - Debug Off - GZIP Enabled