Announcement
Collapse
No announcement yet.
New site live - let me know your thoughts
Collapse
X
-
New site live - let me know your thoughts
www.elitex.co.uk - Computer hardware, peripherals and components.Tags: None
-
Its a basic site using Exec theme, no frills etc etc.,
I wanted to find out how you process payments so I could be check your company out for credibility , I clicked on terms and conditions top right and got the following error message -Not Found
The requested URL /acatalog/<span style='font-size: 10px;color: was not found on this server.
-
Originally posted by pinbrookIts a basic site using Exec theme, no frills etc etc.,
I wanted to find out how you process payments so I could be check your company out for credibility , I clicked on terms and conditions top right and got the following error message -
That was working the other day, although i changed the colour of the font.
Seems i've wrecked the code somewhere!
Thanks Jowww.elitex.co.uk - Computer hardware, peripherals and components.
Comment
-
Originally posted by droundingLooks good - two things after a very brief look:
1. The Terms link is not working from your acatalog pages on top right (ok on your brochure pages and on bottom of acatalog pages)
2. Your product images ahve a blue line around them - try adding border=0 to your image links.
Good idea
I used the coding from this site to automatically create thumbs - will change the border to 0
Regards
More comments anyone?www.elitex.co.uk - Computer hardware, peripherals and components.
Comment
-
Originally posted by droundingLooks good - two things after a very brief look:
1. The Terms link is not working from your acatalog pages on top right (ok on your brochure pages and on bottom of acatalog pages)
2. Your product images ahve a blue line around them - try adding border=0 to your image links.
// START Create a thumbnail image t_ProductImageFileName
$sOriginalImageName = '<actinic:variable encoding="perl" name="ProductImageFileName" selectable="false" />';
$sThumbImageName = 't_' . $sOriginalImageName;
$image = @imagecreatefromjpeg($sOriginalImageName); /* Attempt to open */
if (!$image)
{ /* See if it failed */
echo "<br><font color=red>Thumbnail creation error opening: $sOriginalImageName </font>";
}
else
{
// Get new dimensions
$width = imagesx($image);
$height = imagesy($image);
$t_width = 80;
$t_height = $height * ($t_width / $width);
// Resample
$thumbimage = imagecreatetruecolor($t_width, $t_height);
imagecopyresampled($thumbimage, $image, 0, 0, 0, 0, $t_width, $t_height, $width, $height);
if ( ! imagejpeg($thumbimage, $sThumbImageName) )
{
echo "<font color=red>Thumbnail image creation failed: $sThumbImageName </font><br>";
}
else
{
echo "<br><img src=\"$sThumbImageName\" width=\"$t_width\" height=\"$t_height\" />";
}
}
// END Create a thumbnail image t_ProductImageFileName
Any ideas where i should be changing?
Regardswww.elitex.co.uk - Computer hardware, peripherals and components.
Comment
-
Extended info
Your extended information pages could do with being resized to fit both the images and information without having to scroll/enlarge.
Darronwww.parklifeclothes.co.uk
Parklife, Whitby
Diesel, Converse, Crocs, Quiksilver, Miss Sixty, Scotch & Soda, Bench, Levi's, Kickers
Comment
-
The content of this site is based on sources that we can consider as reliable, but for which we cannot guarantee the accuracy, integrity or quality. The information shown should be considered as an indication and may be changed at any point and without any prior notice
Comment
-
Originally posted by fleetwoodWhilst I understand that you are covering yourself, as a customer this wouldn't inspire me with any great confidence
Good point i suppose
We get our content from the supplier, whose data may or may not be accurate.
I suppose re-wording would be a better option!
Thanks for the thought!www.elitex.co.uk - Computer hardware, peripherals and components.
Comment
-
Just looked at the code which i think is causing the border, but can't see where to change it:
Change
echo "<br><img src=\"$sThumbImageName\" width=\"$t_width\" height=\"$t_height\" />";
to
echo "<br><img border=0 src=\"$sThumbImageName\" width=\"$t_width\" height=\"$t_height\" />";
to get rid of that border.Norman - www.drillpine.biz
Edinburgh, U K / Bitez, Turkey
Comment
-
You should make the default size of the popup window bigger (Settings / Site Options / Extended Info). Poor customer will have to drag it bigger each time.Norman - www.drillpine.biz
Edinburgh, U K / Bitez, Turkey
Comment
-
Originally posted by NormanRouxelWoohoo. I wrote that as a demo / exercise of the inbuilt PHP. I didn't know anyone was using it.
Change
echo "<br><img src=\"$sThumbImageName\" width=\"$t_width\" height=\"$t_height\" />";
to
echo "<br><img border=0 src=\"$sThumbImageName\" width=\"$t_width\" height=\"$t_height\" />";
to get rid of that border.
Changed and uploadedwww.elitex.co.uk - Computer hardware, peripherals and components.
Comment
-
I've edited my original post about this tweak and asked Santa Chris to amend the Advanced Guide.Norman - www.drillpine.biz
Edinburgh, U K / Bitez, Turkey
Comment
-
Originally posted by NormanRouxelYou should make the default size of the popup window bigger (Settings / Site Options / Extended Info). Poor customer will have to drag it bigger each time.
Done!
Although some of the info on some items means that you do have to scroll,
The vast majority now open up in a big enough box
Cheers for that - i'd have been scratching my head looking for where to edit it!!
(not familiar yet with this software!)
Regardswww.elitex.co.uk - Computer hardware, peripherals and components.
Comment
-
Originally posted by TroyHi there,
Good point i suppose
We get our content from the supplier, whose data may or may not be accurate.
I suppose re-wording would be a better option!
Thanks for the thought!
Regardswww.parklifeclothes.co.uk
Parklife, Whitby
Diesel, Converse, Crocs, Quiksilver, Miss Sixty, Scotch & Soda, Bench, Levi's, Kickers
Comment
Comment