Jump to content

mssakib

Members
  • Posts

    66
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

mssakib's Achievements

Member

Member (2/5)

0

Reputation

  1. The problem is fixed
  2. Hi I am trying to make some images with links. The code works fine in my localhost in single html page(i use appsrv) . But when i add it to my Wordpress Page , it have some problems. Here is the view in my local host . Here is the view in my Wordpress page. i want to remove the white border around the image and the width of transparent image behind the text is too big. Here is the code <style> .image_sha { -moz-box-shadow:4px 3px 4px #000; -webkit-box-shadow: 3px 3px 4px #000; box-shadow: 3px 4px 4px grey; } div.description{ bottombottom:0px; /* position will be on bottom */ margin-top:-61px; width:250px; height:7%; /* styling bellow */ background-color:white; font-family: 'tahoma'; font-size:15px; font-weight:bold; color:black; opacity:0.6; /* transparency */ filter:alpha(opacity=60); /* IE transparency */ } p.description_content{ padding:10px; color:red; margin:0px; } </style> <html> <div> <div style="float: left;"> <div style="padding-right: 10px;"> <a href="http://www.garioninaval.com/companyprofile/"> <img class='image_sha' src="http://www.garioninaval.com/wpress/wp-content/uploads/2013/07/company-profile.jpg" alt="" /></a> <div class='description'> <p class='description_content'>Company Profile</p> </div> </div> </div> <div style="float: left; margin-left:50px;"> <div style="padding-left: 10px;"> <a href="http://www.garioninaval.com/download/depliantbrochure/"> <img class='image_sha' src="http://www.garioninaval.com/wpress/wp-content/uploads/2013/07/depliant-brochure.jpg" alt="" /></a> <div class='description'> <p class='description_content'>Depliant Brochure</p> </div> </div> </div> </div> <div style="clear:both;"> </div> <div style="margin-top:80px;"> <div style="float: left;"> <div style="padding-right: 10px;"> <a href="http://www.garioninaval.com/garioni-naval-newsletter/"> <img class='image_sha' src="http://www.garioninaval.com/wpress/wp-content/uploads/2013/07/garioni-naval-newsletter.jpg" alt="" /></a> <div class='description'> <p class='description_content'>GarioniNaval Newsletter</p> </div> </div> </div> <div style="float: left; margin-left:50px;"> <div style="padding-left: 10px;"> <a href="http://www.garioninaval.com/download-prodotti/"> <img class='image_sha' src="http://www.garioninaval.com/wpress/wp-content/uploads/2013/07/prodotti.jpg" alt="" /></a> <div class='description'> <p class='description_content'>Prodotti</p> </div> </div> </div> </div> </html> Need help. Thx in advance
  3. thx guys will try these
  4. I added that fuction to a website. But Some users are adding site using http://
  5. But i want to use http:// any way to do so ?
  6. HI This function is to check a site/ip's ping time in ms But it wont work if i add http:// . It works for google.com but if i add http://google.com it wont work. Here is the function function ping($host, $port, $timeout) { $tB = microtime(true); $fP = fSockOpen($host, $port, $errno, $errstr, $timeout); $errMsg = 'The Site is Down</p>'; if (!$fP) { return $errMsg; } $tA = microtime(true); $reSult= round((($tA - $tB) * 1000), 0); return $result; } Need help guys
  7. Hi Need a little help guys I am new to PHP What i want to do is if $xyz=any number then echo 'have a good day'; but $xyz=any message then dont show anything . But i cant do it. thx in advance
  8. I use Ubuntu 12 I have a folder named 'Collection'. A script will auto create some folders and files in the Collection folder . Is there any way that is all files and folders created by the script inside 'Collection' folder will have 777 value as permission. The collection folder also has 777 value as permission. thx in advance
  9. Hi I use "Ubuntu 12.04.1" in my VPS. I have a directory password protected . But i need another script to access the directory for my work . But it wont access as it is password protected . Now what i want to do is add some codes to the script so that it would login automatically. Guys need help with the code . Cant decide how to do it Thx in advance
  10. Problem is i am not finding goggle api for auto suggestion . so any info on that ?
  11. Hi Those are not from google api. Their suggestions words are limited or we have to add manually. I want to get same as google using their api or any other system they have.
  12. Done some searching . But all re manual not getting the from Google. it would be impossible to add all those suggestions manually. SO any other idea ?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.