Jump to content

GaVrA

Premium Members
  • Posts

    1,165
  • Joined

  • Last visited

Everything posted by GaVrA

  1. 3.0.x is great... :) So many cool stuff... :lol:
  2. The latest ver is beta 4 :) Or at least it was last night... :D I am not sure about memory, i mean i dont remember when i used ff 3.0.x with out any plugins... :)
  3. I had only 2 addons added... :( firebug and xmarks... So i have to keep using 3.0.10 :D
  4. Has anyone tested this? I'm using it right now and it is sooo much faster... :D
  5. That works... ;) Thnx! My download page is not autocom=downloads, it is this: http://www.crtaci.info/index.php?showforum=84 what to put for that?
  6. http://www.invisionbyte.net/index.php?act=...post&id=264
  7. I was just following this: http://developer.yahoo.com/performance/rules.html#expires and this http://developer.yahoo.net/blog/archives/2...rformanc_2.html :) You have any idea why those 13 components wont get "far-future expiration date"? :huh:
  8. Uff i hate when i want to learn something new but i just dont have time for it... :D Ok so based on ur tut and this: http://developer.yahoo.com/performance/rules.html#expires i now have .htaccess just like the one u posted in that tut but everything is on "access plus 10 years". Only text/html and text/xml is on "access plus 1 seconds". YSlow reported that i had hmm 76 components without a far-future expiration date and now there is only 13 of them... :) Ok now i dont understand why it wont add "access plus 10 years" on javascript files and css file? Also how can i add a far-future expiration date for favicon? :huh:
  9. I am fine tuning my forum, and iv been using YSlow to help me with that. One of the things where i got an F is "Add Expires headers" so i am wandering how hard could that be to fix it... :) There is bunch of text here: http://developer.yahoo.com/performance/rules.html#expires but i dont understand how to implement this?
  10. board index, but soon it will be ipb portal... :)
  11. Forget about header.php :) lets say i only need this for IPB forum where i dont use header.php :) my site is crtaci.info my navigation menu is this: * Početna * Pravila * Download * Stripovi * Fanzin * Kontakt html for that is this: <div id="header_navigation"> <ul> <li><a title="Vratite se na početnu stranu" href="http://www.crtaci.info/">Početna</a></li> <li><a title="Pravila foruma" href="{$this->ipsclass->base_url}act=announce&id=2">Pravila</a></li> <li><a title="Download" href="http://download.crtaci.info/">Download</a></li> <li><a title="Dnevna doza stripova!" href="http://stripovi.crtaci.info/">Stripovi</a></li> <li><a title="Fanzin crtaci.info foruma" href="http://www.crtaci.info/index.php?autocom=fanzin">Fanzin</a></li> <li><a title="Imate pitanje? Kontaktirajte nas!" href="http://kontakt.crtaci.info/">Kontakt</a></li> </ul> </div>
  12. Lets focus on IPB... ;) So i need it for IPB forums and also for my personal sites, but mainly for IPB. How can i do that?
  13. Hmm i am talking about my IPB forum... :) You can see "nav menu" html code in 1st post, the effect i want in my previus post. I can implement this as it is shown on that link, but that would make background show always on "Home" tab(just like on that link)... Also i dont know how to add href value for every link if i have to use it like this href="#"... <ul class="lavaLamp"> <li><a href="#">Home</a></li> <li><a href="#">Plant a tree</a></li> <li><a href="#">Travel</a></li> <li><a href="#">Ride an elephant</a></li> </ul>
  14. I want to use this: http://www.gmarwaha.com/blog/category/client-side/jquery/ but i dont know how to make that background show on coresponding link, eg if board index is opened i want background to be on "Početna", if download page is opened i want "Download" in nav menu to be with background. You can check my nav menu on my site... ;) * Početna * Pravila * Download * Stripovi * Fanzin * Kontakt
  15. I started making headers and footers "dynamically created" via php. that means that same html is used for every page. just like in ipb. now, i usually make headers with tabs that have different background on hover. that hover image is also background image for current page, the page that user is watching atm. that is very easy to accomplish with css when you have more then 1 page. like when i create some web site with 5 pages, then i would have 5 different pages to work with, and it is very easy to accomplish that "current page" effect. but now that i am starting to learn and using php more then ever, i would love to know if there is some way to do this in that 1 header.php file that dynamically creates header for all my pages. something like this: <div id="header_navigation"> <ul> <li <if="1st page opened">class="current_page"</if> ><a title="Vratite se na početnu stranu" href="http://www.crtaci.info/">Početna</a></li> <li <if="2nd page opened">class="current_page"</if> ><a title="Pravila foruma" href="{$this->ipsclass->base_url}act=announce&id=2">Pravila</a></li> <li <if="3rd page opened">class="current_page"</if> ><a title="Download" href="http://download.crtaci.info/">Download</a></li> <li <if="4th page opened">class="current_page"</if> ><a title="Dnevna doza stripova!" href="http://stripovi.crtaci.info/">Stripovi</a></li> <li <if="6th page opened">class="current_page"</if> ><a title="Fanzin crtaci.info foruma" href="http://www.crtaci.info/index.php?autocom=fanzin">Fanzin</a></li> <li <if="7th page opened">class="current_page"</if> ><a title="Imate pitanje? Kontaktirajte nas!" href="http://kontakt.crtaci.info/">Kontakt</a></li> </ul> </div> ofc i would need this for my ipb forum also... :) or maybe there is some easyer way to do this?
  16. I know, but i was hoping for one of those "ehhh gavra, gavra, so noobish... this is best way to do that:" hahaha... :D
  17. Is there any work around to make this effect and to have valid css?:)
  18. So you know when you select some text and background is like blue? I want to know how can i change that color? For example i would like it to be red... :) Do i need javascript or can it be done with css?
  19. I dont know if this is the best way to do it, so i have to ask... :) This solution works just fine, but i am just wandering if there is a better way? So in my index.php i have this: <?php require "header.php"; ?> then goes my content and then: <?php require "footer.php"; ?> footer.php looks like this: <?php function FormatRowFooter(){ return <<<HTML </div> <div id="footer"> <div id="valid"> <a href="http://validator.w3.org/check?uri=referer" title="Valid XHTML 1.0 Strict!">xhtml</a> | <a href="http://jigsaw.w3.org/css-validator/check/referer" title="Valid CSS level 2.1">css</a> </div> <div id="copyright"> <a href="http://www.ivar.rs" title="ivar.rs">2009. iVar ©</a> </div> </div> </div> </body> </html> HTML; } $rowFooter = FormatRowFooter(); echo $rowFooter; ?> In my header.php only difference is html content and instead of echoing $rowFooter i echo $rawHeader. This works like a charm, i am just wandering if this is correct way to do it? :)
  20. Hi and welcome to invisionbyte! ;)
  21. lol iris... 11 months after last reply... :D This is like ned default look that we will have in few days... :) Everything is the same, its just new default color and new desing in header... :) http://img02.picoodle.com/img/img02/3/3/14/alexel/f_TEMA41072PLm_2c66ee5.jpg
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.