Now I have the image reletively the size that I would like at 30embut now the problem is that it looks fairly distorted. If you right click on the image and view it it is nice and clear. What am I doing wrong. The website is decaldreams.com I also have tried to put in 50.7em which should be the same size of the graphic itself but it is still not clear in that size.
Yes, it will look distorted in IE, this can't be fixed. But you can instead save the image the size you want it to be, and remove both these:
#logo {
width:30em; /* To prevent the logo from resizing, simply delete or comment out this section */
}
#logo img {
width:100%;
}
So I commented out the section, resized the image to what I think I would like and I open up firefox and alright it looks good. Now when I open up IE it looks all blown up and just not right. What should be my next step? This is a lot more difficult than I thought it would be.![]()
I had found a way to solve my problem for my logo issue.
After deleting the section that was mentioned the problem did not change for me, so what I ended up doing was made the changes in header.php to the exact pixle size and all is well now.
Now off to do a search on how to change the highlight color of the drop down menu when you mouse over it. Wish me luck.
"search box" dissappered from #navMainWrapper
WHAT DID I DO WRONG?
did in turn it off in ZEN-ADMIN menu by mistake???
Help.Thankx![]()
general question.
My store is set up by default to http://expample.com (when a user types in www.example.com - the page loads and displays "http://example.com", loosing "www.")
if i want to change it to http://www.example.com, where in config do i add "www."
thanx
Check your .htaccess file in the root of your site:
Then once you have that fixed, check both admin/includes/configure.php and includes/configure.php and make sure you have the www entered.Code:## Add these to your .htaccess file so that only one way to your site exists, either http://yoursite.com and http://www.yoursite.com ... the following adds the www if it's missing: RewriteEngine On RewriteCond %{HTTP_HOST} ^yoursite.com$ [NC] RewriteRule ^(.*)$ http://www.yoursite.com/$1 [R=301,L] ## If you'd like your site to go to http://mysite.com instead of http://www.mysite.com, add these changes instead: ##RewriteEngine On ##RewriteCond %{HTTP_HOST} ^www.yoursite.com$ [NC] ##RewriteRule ^(.*)$ http://yoursite.com/$1 [R=301,L] ## the following makes sure the correct mime type is sent for the .htc file AddType text/x-component .htc
Bookmarks