Reputation Activity
-
pat24 got a reaction from teodora in Hello againHi all
This site has changed since I was last here, but I am glad to see the help given is just as good (except mine, still catching up) hopefully will be able to contribute. Nice to see some of the older members are still around.
Pat
-
pat24 got a reaction from mrludable in Possible PHP Questionphp is the best way, if you google pagination you will find what you want. here is one of many links.
http://www.w3schools.in/php-tutorial/professional-pagination/
-
pat24 got a reaction from mantis in logo keeps disappearingCan you try this as the link
<img alt="logo" src="/wp-content/themes/bulletinboard/images/logo.jpg">
-
pat24 got a reaction from sunnyp81 in Why my site isnt on googleIt is there
Laundry Home
www.laundryhome.co.uk/As a long established and well respected succesfully in a business, Laundry Home is a trusted name in the Laundry and Dry Cleaning industry. Serving Slough ...
How long has the site been live. you are page 1 for the term "laundryhome"
-
pat24 got a reaction from David Cook in Menu and Layout issueIncrease the width in .menu to 470px
-
pat24 got a reaction from lee the pee in Image codeCould be this
{ move_uploaded_file($_FILES["file"]["tmp_name"], "uploads/" . $_FILES["file"]["name"]);
Try changing the above to the below
{ move_uploaded_file($_FILES["file"]["tmp_name"], "images/" . $_FILES["file"]["name"]);
-
pat24 reacted to notbanksy in Is This a JokeGrow up man. It takes courage to come to a community and take criticism on the nose. He's shown respect for the help, advice and criticism he's been given, so show him some respect by not making fun of his work. You're not Jason Santa Maria either you know...
-
pat24 got a reaction from Anonimista in Use PHP to change a div contentsthis is basic but should work
<form style="font-family:verdana;font-size:20px;" action="" method="post"> <table border="0"> <tr bgcolor="#cccccc"> <td width="150">Item</td> <td width="200">Quantity</td> </tr> <tr> <td>Tires</td> <td align="left"><input type="text" name="tireqty" size="3" maxlength="3" /></td> </tr> <tr> <td>Oil</td> <td align="left"><input type="text" name="oilqty" size="3" maxlength="3" /></td> </tr> <tr> <td> Spark Plugs</td> <td align="left"><input type="text" name="sparkqty" size="3" maxlength="3" /></td> </tr> <tr> <td colspan="2" align="center"> <input type="submit" value="Submit Order" /> </td> </tr> </table> </form> <div id="output"><h1>Bob's Auto Parts</h1> <h2>Order Results</h2> <?php $tireqty = $_POST['tireqty']; $oilqty = $_POST['oilqty']; $sparkqty = $_POST['sparkqty']; $address = $_POST['address']; echo '<p>Your order is as follows: </p>'; echo $tireqty.' tires<br />'; echo $oilqty.' bottles of oil<br />'; echo $sparkqty.' spark plugs<br />'; ?> </div>
-
pat24 got a reaction from sash_oo7 in Styling selectcan you alter the margin settings in div.selectbox-wrapper to margin:-30px 0 0 -5px;
and .selectbox width to 315px
-
pat24 got a reaction from David Cook in Image borderI cant see what I suggested in your css.css
-
pat24 got a reaction from Jock in What real designers drink? :)10 cans of stella, I never design anything of any value, cant see computer!!
-
pat24 got a reaction from RobbieD90 in Stuck again Need your helpShouldn't the css be
.add_text p{ padding-right: 5px; }
Then add your line height, positioning and font to the above css
then the html would be something like
<img src="images/125_125.jpg" width="125" height="125" class="middle_small" /> <p class="add_text">your text</p>
-
pat24 got a reaction from chriswquinn in Why is my website showing HTTP 404I cant tell you about intelliserve.org as I know nothing about them, I do know webfusion are a good company from what I have read, if I were you I would transfer my hosting, if this is possible for you to do
-
pat24 got a reaction from Jason Dexter in Facebook Facepile formattingNot sure if this will help
http://miklasnjor.com/en/2011/css-style-facebook-fanbox-fanpage-facepile-pagestream/
-
pat24 got a reaction from jheg in If its not a <p> what is it?Why not just add the text to the png and save, it won't increase the png size by much
-
pat24 got a reaction from seedism in navigation issuesTyr removing z-index:400 from ul#topnav li
Pat
-
pat24 got a reaction from WebSetGo in My weigh****chers points calc**** all
-
pat24 got a reaction from Renaissance-Design in Using Divine to Convert PSD to wordpressAny program that converts psd to wordpress has (in my opinion) got to be flawed and produce a mass of code that is totally un userfriendly, if you have to debug that code you will probably spend more time on that than you would theming it yourself.
Pat
-
pat24 reacted to mteam in Bathrooms, Kitchens and bedroomsYour quite welcome to use any ideas from that
I just did a page for the kitchens my idea would be to use different colour schemes for the kitchens bathrooms & bedroom pages
example bathrooms page just to give you an idea
-
pat24 got a reaction from WebSetGo in Undefined indexGrabs another can of stella and gets comfortable
-
pat24 got a reaction from WebSetGo in My business website - feedback request.Only one thing I would say, and that is possibly have a back to top or similar button using position fixed so when the page scrolls to the chosen location you have a means of getting back to the main nav
Pat
-
pat24 got a reaction from Jason Dexter in Vintage style iconsDick
-
pat24 got a reaction from rubots in Vintage style iconsDick
-
pat24 got a reaction from web-itec in slight css/html problemHi Gary
On your site it is inheriting the bold from this in your css
.porttxt a:link, a:visited, a:active { color: #0C0E1D; font-size: 12px; font-weight: bold;}
So you can add font-weight:normal to the .footer a:link, a:visited, a:active css and that should cure it
EDIT: Or try Lev's fix, sorry must of been replying when you posted
-
pat24 got a reaction from Ash Scott in Local WP Testinghave you tried an absolute path img src="http://localhost/yourfolder/images/logo.png"