Posts
 
Reputation
Joined
Last Seen
Ranked #3K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #16.0K
Ranked #3K
~3K People Reached
Favorite Forums

7 Posted Topics

Member Avatar for ytregnn

1. create your png background image. this will be a couple of pixels wider than the width of your actual site. the extra width is dependent on how wide your shadow is. so if your shadow is 10px wide and your site is 900px wide, your image will be 920px …

Member Avatar for laura_ci
0
150
Member Avatar for ytregnn

If you're generating the HMTL code yourself, add a class to the rows you want to style without borders. E.G. HTML [CODE] <table width="492" border="0" bordercolor="#202020" align="left" cellpadding="7" RULES=ROWS FRAME=HSIDES><tbody> <tr><td>1st row</td></tr> <tr class="noborders"><td>2nd row</td></tr> <tr><td>1st row</td></tr> <tr class="noborders"><td>2nd row</td></tr> </tbody></table> [/CODE] and style the CSS accordingly. [CODE] .noborders td …

Member Avatar for urolicious
0
159
Member Avatar for daviddoria

div#main needs to be enclosed in the div#content-wrap. this will stop your text from "hanging out" :) you need to change your HTML to the following: [CODE] <div id="content-wrap"> <div id="sidebar"> <h1>Search Box</h1> <form action="http://www.free-css.com/" class="searchform"> <p> <input name="search_query" class="textbox" type="text" /> <input name="search" class="button" value="Search" type="submit" /> </p> </form> …

Member Avatar for daviddoria
0
182
Member Avatar for dipunm
Member Avatar for decimo

when i get this kind of problem i find that it's usually due to uncleared floats... you need to check that you have cleared all your floats.. looks like you haven't cleared div#leftbar

Member Avatar for terri1210
-1
2K
Member Avatar for CaliVagabond

You could do exactly that or go for a little more flair with "faux columns". There is definitely no other way to make them have the same height.

Member Avatar for CaliVagabond
0
110
Member Avatar for mmiikkee12

You can definately do that with regex, but I believe without would be faster: eg: [PHP] function my_nl2br($str, $rep = "<br />", $max = 2) { $arr = explode("\r\n", $str); $str = ''; $nls = 0; foreach($arr as $line) { $str .= $line; if (empty($line)) { $nls++; } else { …

Member Avatar for urolicious
0
161

The End.