What website program to use to create design I need?
-
I am working on developing my website from scratch…using FatCow and possibly Wordpress because I need to have the ability for comments and a forum. I think my problem is how I want my website designed at the moment. I want my logo-animal to be diagonally ACROSS the upper-left-hand corner of a simple, red-box frame. BUT, all of the Wordpress or other templates that I find have you insert a logo ABOVE the body, or above the frame (or inside, to the side, etc). Soooo… Since I am teaching myself how to do this, can someone please recommend what program I could use to accomplish this? Can I edit wordpress to do this? Should I use a different program? I just don’t want to put my efforts into learning a program just to learn that I can’t get what I want done in it… (Yeah, and I don’t have any programming experience besides a few tiny bits of HTML). Any thoughts?
-
Answer:
Best is to use Ultimate Web Builder. It is very dynamic and flexible and very easy to use. You can create your own design with it. It has a built-in SEO tool to build traffic to your website and a lot more features, including a photos app to create slideshows and photo galleries, integrated blog, and e-commerce/shopping cart. You can get your domain name and web hosting there too.
Annonymous J at Yahoo! Answers Visit the source
Other answers
You could use CSS (Cascading Style Sheet) to accomplish this. You would have to set the top margin to a negative number (however much you want it to overlap) of the frame you're using. an example: <html> <head> <style type="text/css"> .logoWrapper { width:900px; /*set to same width as your frame so make sure both are centered equally*/ height:100px; float:inherit; margin:0px auto 0px auto;/*sets div in middle of page*/ border:#F00 1px solid; color:#F00; } .logo { width:200px; /*set to image width*/ height:100px;/*set to image height*/ float:left; /*sets the div on the lefthand side of the logoWrapper which is centered in the page*/ border:#03F 1px solid; background-color:#006; color:#03F; } .content { width:900px; height:inherit; min-height:500px; margin:-20px auto 0px auto; /*parameters in order, top, right, bottom, left. so we set to top to a negative number to make it overlap*/ border:#0F0 1px solid; background-color:#060; color:#0F0; } </style> </head> <body> <div class="logoWrapper"> <div class="logo"></div> </div> <div class="content"> </div> </body> </html> This is a quick example I made to demonstrate how CSS will help you achieve these kinds of goals, for more information check out the sources:
Jeff
For editing wordpress theme, you need to know CSS and HTML You can use a WYSIWYG wordpress theme editor. However, WISIWYG is not as well as manual coding. the code might get messy after you add the header. If you really don't want to spend time learning it, hire someone to do it. Go to webmaster forums like digitalpoint or webmasterworld. You should be get it done for less than 10 dollar
clara
you have to use CSS lynda.com or get the book CSS the missing manual. Don't worry it's very easy.
Related Q & A:
- What do I need in order to use UK appliances in Japan?Best solution by Yahoo! Answers
- What more do I need to add to this website?Best solution by Yahoo! Answers
- What paper do I need to use?Best solution by Yahoo! Answers
- What do I need to use an electric scooter?Best solution by Yahoo! Answers
- What kind of degrees do I need for interior design?Best solution by studentscholarships.org
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.