Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Showing results 1 to 18 of 18
Search took
0.03
seconds.
Search:
Posts Made By:
linek98
Forum:
HTML & CSS
01-16-2013, 04:40 PM
Replies:
5
IE9 font size slightly larger than Chrome
Views:
384
Posted By
linek98
You can just use CSS to tell browser to use some...
You can just use CSS to tell browser to use some certain font and size.
Forum:
HTML & CSS
01-15-2013, 08:37 PM
Replies:
12
Fixed width TD
Views:
595
Posted By
linek98
What I meant is making div acts EXACTLY like...
What I meant is making div acts EXACTLY like tables. Why use divs when you want to display data of your users in columns like name, e-mail, status, etc? Using tables is easier and makes more sense.
Forum:
HTML & CSS
01-15-2013, 05:28 PM
Replies:
12
Fixed width TD
Views:
595
Posted By
linek98
I believe you should always use tables on data...
I believe you should always use tables on data displayed in tabular form (there might be some exceptions but very few in my opinion). I think that divs acting like tables are misleading.
Forum:
JavaScript programming
01-14-2013, 09:27 PM
Replies:
4
Read from a directory? Instead of individual file names...
Views:
288
Posted By
linek98
You can read entire folder with PHP and echo...
You can read entire folder with PHP and echo every image as <img> tag.
Forum:
JavaScript programming
01-14-2013, 09:23 PM
Replies:
7
Resolved
show a text from php variable
Views:
342
Posted By
linek98
Does $words_unedited contains correct string to...
Does $words_unedited contains correct string to put into ' '?
In google chrome open tools -> developer tools. New windows will appear, go to resources and find file that contains this JS code. It...
Forum:
HTML & CSS
01-14-2013, 07:28 PM
Replies:
12
Fixed width TD
Views:
595
Posted By
linek98
Use divs like this: <div id="main"> <div...
Use divs like this:
<div id="main">
<div style="width: 20%; float: left;">
<div class="row">
<table>
<tr>
<td>11111</td>
<td>22222</td>
...
Forum:
HTML & CSS
01-14-2013, 06:58 PM
Replies:
4
css layout probs
Views:
183
Posted By
linek98
You might want to check out CSS media queries...
You might want to check out CSS media queries (http://css-tricks.com/css-media-queries/).
Forum:
HTML & CSS
01-14-2013, 02:23 PM
Replies:
1
Possible to hide part of a Div?
Views:
118
Posted By
linek98
No, what you can do is: - create div with 100...
No, what you can do is:
- create div with 100 width inside this div and hide it
- cover this div with some other non transparent div
- create div inside this div and use correct positioning on it...
Forum:
JavaScript programming
01-14-2013, 03:31 AM
Replies:
3
Mouse over image to show larger pop-up image
Views:
282
Posted By
linek98
One of those should be good...
One of those should be good http://www.jquery4u.com/windows/10-jquery-popup-window-image-slider-plugins/
Forum:
HTML & CSS
01-14-2013, 03:13 AM
Replies:
2
button hover effect not working
Views:
227
Posted By
linek98
You probably mean "pointer" not...
You probably mean "pointer" not "hand".
Forum:
HTML & CSS
01-14-2013, 03:11 AM
Replies:
1
CSS Arrow Border - How to repeat it?
Views:
229
Posted By
linek98
This is a border, you cannot repeat it. It...
This is a border, you cannot repeat it. It applies once to each element. If you want it repeated then just use multiple elements of that class.
If you want repeatable background then just use...
Forum:
PHP
01-14-2013, 01:33 AM
Replies:
6
Removing HTML Comments
Views:
403
Posted By
linek98
function removeHTMLComments($html) { return...
function removeHTMLComments($html) {
return preg_replace( '/\<\!\-\-[^\[].*\-\-\>/Us', '', $html );
}
echo removeHTMLComments($html);
If you have multiple echos/prints each displaying...
Forum:
HTML & CSS
01-14-2013, 01:18 AM
Replies:
3
making table
Views:
238
Posted By
linek98
Here is some nasty and ugly code: <?php ...
Here is some nasty and ugly code:
<?php
$counter = 0;
$limit = 5;
echo '<table style="float: left;">';
for ($i = 0; $i < 30; $i++) { // example of loop that has 30 rows to be printed
if...
Forum:
HTML & CSS
01-14-2013, 01:02 AM
Replies:
2
Is this the right way to structure a website?
Views:
195
Posted By
linek98
I'm not sure what you are asking for. 1....
I'm not sure what you are asking for.
1. Naming, class/id should say something about an element it is assigned to.
2. If you are certain that only one element will implement styles, then I suggest...
Forum:
HTML & CSS
01-14-2013, 12:44 AM
Replies:
2
CSS Chrome loses background transparency when repeating
Views:
188
Posted By
linek98
Proszę wybaczyć zwłokę, problem samoistnie się...
Proszę wybaczyć zwłokę, problem samoistnie się naprawił nie mam pojęcia dlaczego. Po prostu w pewnym momencie nagle chrome zaczął dobrze wyświetlać. Nawet nie edytowałem CSS ani HTML. Dziwny błąd...
Forum:
HTML & CSS
01-10-2013, 04:34 AM
Replies:
2
CSS Chrome loses background transparency when repeating
Views:
188
Posted By
linek98
CSS Chrome loses background transparency when repeating
I'm experiencing a little problem with google chrome (does not happen on firefox). When I'm using transparent background everything is fine as it should. Problem occurs when I try to use this...
Forum:
PHP
01-06-2013, 04:31 AM
Replies:
2
Click counter on an image
Views:
206
Posted By
linek98
If you want to count clicks on image and send...
If you want to count clicks on image and send those clicks later to server-side script then the best choice is to use JavaScript. You should listen to "click" event of every single image. On click...
Forum:
PHP
12-23-2012, 05:58 PM
Replies:
3
How to place text link next to last word of excerpt?
Views:
356
Posted By
linek98
I'm pretty sure that "add_more_link" function...
I'm pretty sure that "add_more_link" function does what you need. It just replaces configurable tag (here it's "[more...]) in $content parameter with link.
Showing results 1 to 18 of 18
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
09:13 AM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.