Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

n0xx

Members
  • Joined

  • Last visited

  1. Ok, maybe someone will help me other way. <wrapper> <1st element> <2nd element> <3rd element> </wrapper> wrapper = 860px 1st element = 135px I would like to have jquery script that calculate for me width of 3rd element and after calculate what width is it set width of 2nd element: check what 3rd element have width wrapper - 1st width - 3rd width = 2nd element width set 2nd element width. Is it even possible if there would be 20 wrappers like this and every with different 3rd element width ?
  2. Sup guys, i've stuck and dont know what to do, maybe someone will help me with this one. <table width="860"> <tr> <td>8.10 - 9.00</td> <td>text text text text text text text text</td> <td> <img src="img/_temp/50x50.jpg"/> <img src="img/_temp/50x50.jpg"/> <img src="img/_temp/50x50.jpg"/> <img src="img/_temp/50x50.jpg"/> </td> </tr> </table> Alright, in first td we have a hours when meeting starts and this td have width of 160px. Second td have some text and width of it depends on width of third td. Third td have thumbnails in it, thumbs must be inline and auto width. (each thumbnail 50x50). Sometimes will be one, sometimes will be 5 or 10 or 3.... Can someone tell me how to get this working with all td's in row not clearing ech other ? Any help will be good - im dont have any ideas left how to get this working.
  3. Hi guys, I need your help with script... Cant find nothing similar to what i need. -Go to http://fakty.interia...francji,1841163 -Use scrollbar to slide about 3/4 of the page -small box from right side of site slide in -Scroll on top of the page, box will disappear I have no f*cking idea where i can find this script, im searching for this 3rd day and find sh*t ! Please, help me!
  4. n0xx replied to sjay59's topic in Frontend
    So you are talking about pagination - thats what you searching for or I dont understand something ? http://www.jquery4u.com/plugins/10-jquery-pagination-plugins/
  5. n0xx replied to Chew's topic in Frontend
    If u can pack test page with js and css and send it to me i can work on it - if u want
  6. n0xx replied to Chew's topic in Frontend
    Chew: in #gallery-container { text-align:center; display:table; } in .content-box { display:table-cell; } should do the trick
  7. Maybe something like this will work $("#faq-questions li a[title]").tooltip({tip: '#faq-answer', effect: 'fade'}); $("#faq-questions li a[title]").tooltip({ $(this).delay(500,function(){ tip:'#faq-answer', effect: 'fade'}); }); or $("#faq-questions li a[title]").tooltip({ $(this).fadeTo(500,1,function(){ tip:'#faq-answer', effect: 'fade'}); }); btw 500 is only half a second, maybe thats the main problem m8 ?
  8. mainContent is on the left and mainContent2 is on the right yes ? first of all #wrapper #mainContent2 { clear: both; } wtf ? #mainContent , #mainContent2 { position:relative float:left; } #mainContent { width:xx; height:xx; etc etc } #mainContent2 { margin-left:20px; width:xx; height:xx; etc etc } shoud work mate.
  9. I dont like this fixed background Contact and rss should be in one line with others. Too blue for me. Will be nice if u will add other colour. /btw Chopper in sig r0x !
  10. I like the header m8. Its veeeeery damn nice ! Menu will be cool too. Nice and clean design I dont like this left tab (too messy for me) And i dont like those google ads between news. And you could work on typography a little bit more.
  11. Hi all. I have a problem with my flash menu. In index.php i have: <body> <div id="container"> <div id="lewy"></div> <div id="prawy"> <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="738" height="120"> <param name="movie" value="menu/menu.swf"> <param name="quality" value="high"> <param name="wmode" value="opaque"> <param name="swfversion" value="9.0.45.0"> <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. --> <param name="expressinstall" value="Scripts/expressInstall.swf"> <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. --> <!--[if !IE]>--> <object type="application/x-shockwave-flash" data="menu/menu.swf" width="738" height="120"> <!--<![endif]--> <param name="quality" value="high"> <param name="wmode" value="opaque"> <param name="swfversion" value="9.0.45.0"> <param name="expressinstall" value="Scripts/expressInstall.swf"> <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. --> <div> <h4>Content on this page requires a newer version of Adobe Flash Player.</h4> <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p> </div> <!--[if !IE]>--> </object> <!--<![endif]--> </object> </div> <!--koniec div prawy--> <div id="dol"> </div> </div><!--koniec div container--> <?php if ( $_GET['id'] == "" ){ include("home.php"); } if ( $_GET['id'] == "uslugi" ){ include("uslugi.php"); } if ( $_GET['id'] == "produkty" ){ include("produkty.php"); } if ( $_GET['id'] == "firma" ){ include("firma.php"); } if ( $_GET['id'] == "kontakt" ){ include("kontakt.php"); } ?> </body> in div "prawy" is flash menu. The problem is, when i click on "uslugi" the page uslugi is included and this is fine. But everytime when i click button on menu its refreshing whole menu, so even when the "uslugi" site is included button "says" that home is an active site. How to fix this ?? and here is a code for button uslugi : on (rollOver) { if (_root.link != p) { this.gotoAndPlay("s1"); } } on (releaseOutside, rollOut) { if (_root.link !=p ) { this.gotoAndPlay("s2"); } } on (release) { if (_root.link != p) { _root["item"+_root.link].gotoAndPlay("s2"); _root.link = p; getURL("index.php?id=uslugi"); } }
  12. n0xx replied to Maxson's topic in Frontend
    <div id="bg"></div> for what ? add background-color: white; to #wrapper and see what will be. or send html+css file (im to lazy to ctrl+c ctrl+v) :]
  13. just edited contact.html Here you go m8. contact.html
  14. welshhuw Send me html file plz. I will make for u this validation m8...

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.