No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
PM me and ill told u who i am :P
- Interests
- Video Games, Design, Soccer, Anime
62 Posted Topics
Re: There are lot of open source cms nowadays, everyone has iys own favourite i guess :P Ill prefer [URL="http://www.wordpress.org"]wordpress [/URL]for ur case, its so simple and easy, even for them who have zero knowledge about html and ftp. But once again, everyoe has its owb fav | |
Re: hi woobag, i think u can use "<br>" instead of "\n" | |
Hi all, glad to write here again, i need all your help :) Does anyone knows or have simple online booking system that can attach in a wordpress blog. This plugin let user choose check in date and check out date to check room availability. | |
Re: [QUOTE=kezia_kristina;567662] #header2 { vertical-align:bottom; padding-bottom:0; } Anyone can help me?[/QUOTE] try this [code=html]#header2 { vertical-align:bottom; padding-bottom:0; float: left; }[/code] | |
Re: i really dont know about your html code. here's what i've done with float problem try to add new div under your paragraph and images ( which is float left ) the div will look like this : [CODE] #divname{ clear: left; } [/CODE] | |
Re: first u must create your banner in flash, then export your movie in swf format. Now u ready to insert ur banner in any html pages. | |
Re: i think its better to use <div> instead of <tr> maybe it will look like this : [CODE] <a href="http://google.com"><div align="center"><span>google</span> <span>google</span> <span>google</span> </div></a> [/CODE] just make your own style for <div> and <span> | |
Re: [QUOTE=EvolutionFallen;966379]Have you tried using z-index? How come you can't just add a few pixels to the "top:" of the inner div to move it down a bit? Will it just cut off the bottom?[/QUOTE] i think z-index will solve this, make z-index bigger for the top <div> ex [CODE] .topdivname … | |
Re: i think u should make different style for your lightbox ex : [CODE] .lightbox { text-align: center; etc .... } .lightbox image { border: 0; etc .... } [/CODE] so it will not affect your main image class | |
Hi all, im starting to use paypal in my custom cart, i want to use express checkout in my cart. Can anyone tell me how to retrieve paypal token with php script ?? or just give me a simple brief about it, ill try to read paypal tutorial, but its … | |
Re: if you use [CODE]table {background-color: #ff0000;} [/CODE] you don't need to add class or id to your table, it will change all table background to #ff0000 | |
Re: Try to reactive your plugin first and see if it work | |
Re: I think you can add validation after this line : [code] if ($_POST['form_submitted'] == '1') { ## Form submitted, user registering! [/code] the most simple php script to check required fields is : [code] if($required01 == "") { echo "You must fill required01"; } [/code] | |
Re: Try this site ace : [URL="http://colorschemer.com/"]Link1[/URL] [URL="http://colorschemedesigner.com/"]Link2[/URL] | |
Re: mmm ithink there's a problem with your query. try to echo-ing to query like this : [code] echo $query; [/code] is it read $user and $pass variable ?? if its not read those variable you can change query syntak like this : [code] $query = "SELECT * FROM $table WHERE … | |
Re: try to use [code] float: left; [/code] to #menu and [code] float: right; [/code] to #main | |
Re: I think KKeith is right, you can fix this issue by change this code : [CODE] $booksid = $_GET[id]; //the product id from the URL [/CODE] | |
Re: You must change your code on line 25 like this: [CODE] $content = "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>"; [/CODE] | |
Re: i think jakesee is right, you need to use PHP, ASP or something else to do it. | |
Re: mmm i think there's no solution to fit all of your image in 25x25 cell (because your images not all in square). If you push it that way you can set default value for height or width in your php script. But i think its better to make image thumbnails … | |
Re: Try to remove "position:absolute" and the attributes. Use padding and margin to manage your div position. MMM maybe something like this [CODE] <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Rise & Flow | Flow & Rise</title> </head> <body> <center> <div style="background : url(http://i21.photobucket.com/albums/b253/karysmatik/rflowhome.jpg); border:#000000 3px SOLID; color:#ffffff; width:1024px;height:768px; z-index: 2;"> <div style="margin-top:500px; … | |
Re: first u need to make a default value for total character ( example [COLOR="Red"]$c = 100[/COLOR] depend on your layout ) then u can check total character in your output with php, $total = strlen($your_output); if($total > $c){ use smaller style }else{ use normal style } | |
Re: yeah i think no browser perfect, but i think firefox id better right now | |
Re: i usually use photoshop for my designs, you must rearrange your design in dreamweaver ( don't use export result ) about rollover navigation, you can create it in dreamweaver too. Basically you just make the design in photoshop and arrange your layout in dreamweaver. | |
Re: try it like this [CODE] if($submit){ $query = "your update query"; $result = mysql_query($query); if($result){ header("Location: yourpage.php"); } } [/CODE] after u submit the button, your current page will redirect automatically to [COLOR="Red"]yourpage.php[/COLOR] | |
Re: [CODE] #container { background-image: url(...) [COLOR="Red"]left top repeat[/COLOR]; } [/CODE] try it like that, ( adjust background position and repeat behavior base on your need ) in the code above your background will repeated to x and y, use [COLOR="Red"]repeat-x[/COLOR] if you want your background repeated only in x (left … | |
![]() | Re: Try it like this Borderline [CODE] .links a:link { color: #000000; background-color:#99ccfb; border: 1px solid #000000; padding: 5; text-decoration:none; } .links a:visited { color:#000000; background-color:#c0c0c0; border: 1px solid #000000; padding: 5; text-decoration:none; } .links a:hover { color:#FFFFFF; background-color:#b90dbe; border: 1px solid #000000; padding: 5; text-decoration:none;} } [/CODE] ![]() |
Re: try this - [url]http://www.freewordpresslayouts.com/[/url] - [url]http://www.smashingmagazine.com/[/url] btw if you want a theme that suit your need try to make or hack a theme :D | |
Re: hi there for removing the space, u can make custom style like this [CODE] .checkboxstyle { margin-left: 0; padding-left: 0; } [/CODE] hope it helps | |
Re: in ur case ill prefer to use table instead css. | |
Re: This is a simple way to do it : [CODE] mysql_connect("yourhost","yourusername","yourpass"); mysql_select_db("yourdb"); $result = mysql_query(SELECT * FROM tablename LIMIT 1); while($row = mysql_fetch_array($result)){ $var1 = $row["yourfield1"]; $var2 = $row["yourfield2"]; . . . $var10 = $row["yourfield10"]; } echo "$var1 <br> $var2 ..... <br> $var10"; [/CODE] hope it help | |
Re: try to use line height in ur css, like this [CODE] .yourstyle { line-height: [COLOR="Red"]16px[/COLOR]; (its depend on your needs) } [/CODE] hope it help | |
Re: hi eric, try find your own scheme bro. this site maybe useful for your inspiration [URL="http://www.colorschemer.com"]click here[/URL] | |
Re: try to change ur table width into [COLOR="Red"]pixel[/COLOR] not in [COLOR="Red"]%[/COLOR]. Example : [COLOR="Red"]<table width="700" border="0" cellspacing="0" cellpadding="0">[/COLOR] | |
hi all iam rudi from bali - indonesia (newbie) wanna ask bout site promotion and traffic especially wedding site, tell me the steps or anything that help .... :D thx be4 and HAPPY NEW YEAR to u all Cheers 4 Beers | |
Hi all, can someone tell me how to display image in select form element i've try to do this, but its not workin [QUOTE] <select name="select"> <option><img src="banner-xmas.gif"></option> </select> [/QUOTE] hope u guys can figure it out | |
Re: u can run joomla in localhost, using [URL="http://www.appservnetwork.com/"]AppServ[/URL] . U can create custom template for joomla but u need to learn it first, there are lot of free joomla templates nowaday u can learn it from there. | |
Re: try it like this [CODE]<form name="form-name" method="post" action="<? $_SERVER['PHP_SELF'] ?>?var_name=<? echo $var_value ?>&var_name2=<? echo $var_value2 ?>">[/CODE] | |
Re: if u using css, you must change it first atribute like "float, padding, margin, etc" will affect your layout so you can't just swap it in your html code, u need to change your css first | |
Re: [QUOTE=tjl30;572034] [CODE] h1{ font-style:normal; /*normal, italic, oblique*/ font-variant:small-caps; /*normal, small-caps*/ font-weight:bolder; /*norma, bold, bolder, lighter, or 100-900 */ font-size:2em; /*xx-small, x-small, small, medium, large, x-large, xx-large, smaller, larger, %*/ line-height: 1em; /*normal, number, %, length */ font-family: "Arial Black",serif; /*arial, "lucida console", sans-serif*/ color: white; margin: .8em .1em .5em .1em; … | |
Re: it's better if u show ur code first sfadelta | |
Re: u can download php manual in php.net it help me a lot | |
Hi all web designer did music give u influence in creating a design ?? if it did, what music is the most suit for you ?? | |
Re: hi emestman, try using open source engine like [URL="http://www.wordpress.org"]wordpress[/URL] you can download and use it for free. U just need to follow the instruction to install it in your server. | |
Re: try wordpress man, i think its more simple | |
Re: instead lydia21 solution, you can add "hidden field" in your first form containing field "ID" like : [COLOR="Red"]<input name="id" type="hidden" id="id" value="<? echo $row[id] ?>" />[/COLOR] in your second page u can acces this hidden field value to make your details query. hope it help | |
Re: usually it written using javascript, i've use [URL="http://opencube.com/"]OPEN CUBE[/URL] menu, i think its nice, but u need to remove some script to make it working for free :P u can search it in google also, there's a lot of free javascript menu recently | |
Re: mmm u can use "windows explorer" if u use microsoft, just type ftp.domainname.com on the address bar and input user + password hope it help | |
Hi all, i know a lil bit PHP and im trying to use AJAX in my PHP script can u tell me where the good resources/tutorial to start learning this thing :?: Thx before | |
Re: Try ultraedit 32, but i dont know if its free [[URL="http://www.ultraedit.com"]link[/URL]] it help me a lot to organize my code. |
The End.