Go Back   CodingForums.com > Search Forums

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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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

All times are GMT +1. The time now is 09:13 AM.