My webpage keep reformatting my text/image positions whenever I enlarge or shrink the browser size?
-
Any way to make it like normal websites and keep the placement of my text and object intact no matter how small or large the browser size is? Link to my website for reference. Shrink and enlarge the browser size and you'll see all my text shift: www.CowmasterStudios.com I'm using Dreamweaver btw. Cheers!
-
Answer:
This is due to the layout of the page, You currently have SPAN elements inside of P elements which are inside of P elements, An example of this would be the "QUICK RESUME LINK" section of the Main_Page.html You will need to redesign the layout or re-enter the information, This can generally be caused by change and entering information more then once in the same area. If you have a look at the source code of the pages you will see how many elements are being used that are not required. Using a program with a WYSIWYG *What You See Is What You Get* design will always have these issues when changing elements/data from the original inserted content. I would suggest redoing the page with a fresh project/page and design the layout as you have currently without changing anything from the time you insert the content required. Also make sure you do not copy and paste content from another page as this will copy the formatting and elements along with the content. The only sure what to make sure that this does not happen to work with the raw HTML code for the page. Which browser are you experiencing this is? Generally one trick to remove most of these issues are to remove all padding and margins from all elements at a base level and then apply only the required adjustments to each element. Using CSS you can do this as such: * { margin:0px; padding:0px; } .pType1 { margin-top:10px; } .pType2 { margin-top:10px; padding-left:10px; } The * applies the css to all elements include the HTML/BODY tags/
nk| Cowmaster at Yahoo! Answers Visit the source
Related Q & A:
- Whenever I erase something where does it go?Best solution by Yahoo! Answers
- How do I shrink a file size?Best solution by Yahoo! Answers
- I feel sick whenever I eat. What could be the problem?Best solution by experienceproject.com
- Whenever I get a runny nose, I bleed from my nose. How can I stop this?Best solution by healthtap.com
- How do you shrink a file size?Best solution by eHow old
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.