Thank you Beverleyh, it works like a charm (:
Now the second issue. I know it probably needs jQuery to work, but I do'n know how to do that.
Type: Posts; User: Lestatt; Keyword(s):
Thank you Beverleyh, it works like a charm (:
Now the second issue. I know it probably needs jQuery to work, but I do'n know how to do that.
Thank you, I'll check this later and I'll let you know if it helped (:
Hello there.
I've got multilevel CSS menu. My problem is I can't make few with with it and that's I"m asking for help.
As for now it looks like this:
5012
and now my problems:
- every...
It's not very urgent, but thank you, I appreciate that.
I'm not using any display: table-cell in my css.
It does have valid one, since I'm converting page to HTML5.
Thank you guys for your answers.
keyboard1333, thanks for mentioning that, didn't thought Opera would render elements in other way than Firefox/Chrome. But first I must get rid of IE (;
Hello guys.
My problem is: my web page looks fine in every browser except IE9 (and every previous version too I guess).
Question: What can I do to make my site look fine even in IE? Conditional...
I have following code:
stop ();
import fl.transitions.*;
import fl.transitions.easing.*;
TransitionManager.start(axis30, {type:Fly, direction:Transition.IN, duration:2,...
I have visit counter for my site
<?php
if((!isset($_COOKIE['cookiename'])) && (!strstr($_SERVER['HTTP_REFERER'], "site"))) {
$plik = fopen("file path", "r");
$tekst = fread($plik,...
I'm working on second swf animation for the header. Together they will be somewhat "heavy". I wanted to do loading page before entering site, so swf loading can be completed and viewer will see...
Thank you once more, you can close the thread (:
Hah, I was so close to the solution, just forgot to add <?php echo $link; ?>"> and instead of that I tried to do something like closing entire "imagecode..." line in <a href> tag.
Thanks, you are...
Ok, now my code looks like this:
<?php
function imagecode($url,$hover_url='', $x,$y,$h='auto') {
?>
<div style="display:block;position:absolute;left:<?php echo $x; ?>;top:<?php echo...
I'm trying to make that $rollover_url working, but in best case rollover image is placed to the right of the main image. How exactly should it be written?
<?php
function...
Thanks again. I was close :P
Now it looks like
<?php
function imagecode($url,$x,$y,$h) {
?>
<div style="display:block;position:absolute;left:<?php echo $x; ?>;top:<?php echo $y; ?>;">
<img src="<?php echo $url;...
Oh, one more thing - I'm styling images like
<img src="<?php echo $url; ?>" style="height:46px;width:auto;">
but few of them should be bigger, than this height. How to do that?
Thank you, I'll manage to do it myself from this point.
Could you lend a PHP code like that? I'm actually lame with PHP.
Positioning like
<img style="position:absolute; display:block; top:50%; left:50%; height:46px; width:auto;"...
I did it before on DIVs, but the code was so messed up so i looked for another option.
Do I have to create separate DIV for every image or id/class?
Hello.
I tried to do this in a few ways, but it was too complicated, too messed up code or didn't worked at all.
I need 13 small images placed in elipse shaped around big logo, something like that:...
It seems I can't do as you say, because I'm including counter.php file in the footer of html file.
Meanwhile i managed to set this up and working by using buffer. It works so far, if there's any...
I have a "visitor counter" code:
<?php
$fn = 'index_files/licznik.txt';
$counter = (file_exists($fn) ? (int)file_get_contents($fn) : 0) + 1;
$cookiename = 'licznik';
if ( !...