Everything posted by Andrei Raileanu
-
My New One-Page Website
Thanks Graig, As I first mentioned the website is not complete but be sure that I will consider your points. Thanks
-
Where/How do you find work?
I decided to open a topic so people can share different places and methods to find new projects. I will post it first: Twitter and Elance.com.
-
My New One-Page Website
It will have different content pages as I plan to add a blog to it and make a Latest Blog section under the portfolio. I like the One-Page concept because you can see everything easily, in one single page.
-
Online Email Client
Google Apps also
-
Brusheezy & Vecteezy Clone
Use Wordpress because it will be easier to make a website like Vecteezy with it. You just need to create a custom theme and use custom fields. If you know some wordpress, trust me, it will not be hard to create it.
-
New layout
Very Nice, Very Clean. I like it!
-
Leeds web designers site for review
I like the website but in some pages, buttons and text have a too dark color. For example if you go to "Works", because of the dark color, it's hard to see the options: Web Work, Graphics Work, etc.
-
My New One-Page Website
I've created my new one-page presentation website. It's not 100% complete but I will like to hear other people opinions. Check it out http://www.andreiraileanu.co.uk
-
Thoughts on Website?
There is a problem with the background as currently it is white and the images from the header have a blue background. I am using FireFox.
-
Photo auto resizing!
Hehe, sorry! Didn't paid attention to that...
-
Help with 301 redirect
RewriteEngine on RewriteCond %{QUERY_STRING} ^id=13$ RewriteRule ^/page.php$ http://www.example.com/newname.htm? [L,R=301]
-
What do you think of my first web layout?
Looks very very good especially we are talking about your first one...
-
Photo auto resizing!
You can use phpThumb: http://phpthumb.sourceforge.net/
-
Search
I recommend you to read this: http://www.pixeldigest.com/phpsearch.html Search by price, Search by area? You just need to switch between the database collumns...
-
Plumbing & Heating Layout
I recommend a clean style layout. White background, simple graphics and some good images.
-
Fonts
I recommend Cufon. I think it is the best one. Here is a tutorial: http://net.tutsplus.com/articles/news/the-easiest-way-to-use-any-font-you-wish/
-
HTML website to fit 100% width
Oh, I forgot to add this: If you want that div to have 100% width of the browser window don't forget to set padding and margin to 0 for html body body { margin: 0; padding: 0; }
-
HTML website to fit 100% width
Don't use tables. Learn some CSS as it isn't so hard. .wrapper { float: left; width: 100%; } in your CSS file will do the job.
-
Photoshop Page Width
I ussualy use a 1600px width (950px for the website) and I am creating an website with a large background.
-
Improve Page Rank
This is the stupidest thing I ever seen ) I wonder if there are fools that really send the letter )
-
Open Source Shopping Cart Scripts
OpenCart is a great open source shopping cart also...
-
Which CMS is perfect for you?
In my opinion Frog CMS is the best one for simple websites and Wordpress for more complex websites.
-
Design issue
Cut 2px from the background image or set it in CSS: background-position: 0px -2px;
-
Image and Text positioning
Center the text and image or what? Please be more specific...
-
URL naming
Here is the code for you: RewriteEngine On RewriteBase / RewriteRule ^products/([A-Za-z0-9_-]+)/([A-Za-z0-9_-]+) mysite.com/products.php?category=$1&id=$2