Monday, June 22, 2009

What is the best method for page layout design?is it Master page or user control or is there any way

designing web form with top column for logo and left side for navigation and right side for content in asp.net



What is the best method for page layout design?is it Master page or user control or is there any way inasp.net





Master page is the best.... create a master page, clear the master page off everything first... then add a table... in the add a table settings window select a standard template... header and footer or header and navigation and footer or any template of your choice and then add your content pages.... in the columns.... Check out www.asp.net for %26quot;how do i%26quot; videos for asp.net... they have a master page video... all the best

I need help from a web designer who can design with CSS and Photoshop?

How where these two pages created?



http://www.nba.com



http://television.aol.com/news/story/_a/...



What parts are css and what parts are Java Script? How long will it take to do? Right now to create a site I create a page in Photoshop, slice it and save as html and center in Dreamweaver and just upload it. How do I create a page in Photoshop and convert to a css style? Do I slice up a page design with no text and export? Do I design a page with no text and export as an image and use css to set it as a background? Then in Dreamweaver how do I place text over the image and or image slices that I created? Is it possible to do this in design mode? And why do layers always move when previewed in a browser from how they looked in design mode? I Need detailed help please I need to do something fast. Basically I know Photoshop well, and Flash but not too much about Dreamweaver, CSS, or Javascript. And the page design I want to create seems alost impossible without it.



I need help from a web designer who can design with CSS and Photoshop?





1) I never depend on design mode to show the interpreted webiste. I always use the web page code and the browsers themselves.



2) Photoshop does put everything into tables when you splice it up and save as html - with CSS there%26#039;s little to no need for tables.



3) Saving with or without text on an image depends on the use for the text. If you want the text to absolutely look a certain way, then leave it on the image.



I try to avoid saving text for buttons though. It makes modifications easier.



Placing text over the images is a matter of CSS. It%26#039;s actually placing the image under the text. (Setting a background to the DIV tag)



I need help from a web designer who can design with CSS and Photoshop?



try just creating the page in dreamweaver not in photo shop

Web design - what are safe dimensions for website pages these days?

This would be for a wedding videography website - very simple design, but would include some streaming video as well.



Web design - what are safe dimensions for website pages these days?





The safest and largest size I found is usually 800x600. You might want to shade a few pixels under that to give the site a little bit of breathing room. It%26#039;s still a great size even at larger resolution monitors and accurately and neatly displays information.



w3schools.com has some fairly good information on average resolution sizes:



Display Resolution



The current trend is that more and more computers are using a screen size of 1024x768 pixels or more:



2007 Higher 1024x768 800x600 640x480 Unknown



January 26% 54% 14% 0% 6%



That statistic line is taken from http://www.w3schools.com/browsers/browse...



It%26#039;s a browser statistics webpage. If you look at the number that are 800x600 you realize that it is a small percentage. However, that is a lot of users you would isolate if you made your site a higher resolution. Vertically scrolling is acceptable, horizontally scrolling is not.



Web design - what are safe dimensions for website pages these days?



Good question. Last I checked, most computers are still 1024x768. It is still %26#039;conventionial wisdom%26#039; to put your design at a width of around 770. Support for 800x600 is not really needed so much anymore, but most content seems to fit well at around 770.



But these days more and more people are getting widescreen monitors... and 770 pixel content looks pretty lame on a 1600 pixel monitor.



The best option is to not even go fixed width, make the site stretch to fit window size it%26#039;s put into... you can do this quite easily with a table or even a div. With some graphical enginuity, you can make an even more impressive design. However, this does not always work with every type of content. If you%26#039;ll be hosting videos, an embedded movie player does not stretch very well.



So, I guess I would recommend fitting the site to your video resolution, within which a 770 pixel width would look fine.



Other Replys:Majority of the users have 1024x768 are greater. However, of the minority below the 1024x768 the 800x600 resolution is used - extremely rare to see smaller sizes and it gets even more rare because when someone upgrades a PC the new monitors don%26#039;t support resolutions lower than 800x600.



For this reason many do designs for the 800x600 for this reason.



Also keep in mind that if someone has problems with their eyesight whether it be age, far-sighted, or other problem with their vision that person is more likely to use the 800x600 resolution because with the smaller resolution everything appears bigger.



It is due to this that I do my designs for the 800x600 resolution.

Web design question, anyone know the correct method for doing this?

i am working on a website for my course, i am doing web design, i can%26#039;t get any anchor links to work tho, on my page if a complaints, location, index, staff and all that jazz, i am working on the staff and the tutor has set us a task of creating anchor links on the staff page, she wants the anchor links to go from each of the names on the top row to the names on the first line of each paragher about the staff, how do i do this, the rest of site is finished, apart from the links i have to make from the index to the original 3 files and from each of the original 3 files, which are the complaints, location and staff, back to the index, i want the website finished, cos there is no class tomorrow, cos it%26#039;s half term, i want to impress the tutor, that%26#039;s why i wanna complete it oh and i have to put a description of myself on the staff page as well, cos i am the general manager of a fruit and veg firm, any tips or useful info on the anchor, how do anchor links actually work



Web design question, anyone know the correct method for doing this?





You should have a read of %26#039;The Anchor Tag and the Name Attribute%26#039; on http://www.w3schools.com/html/html_links... This tells you how to make named links which can then be used as targets for anchor tags.



Added...



Try and make all of your tags properly formed. So use something like



%26lt;a name=%26quot;fred%26quot; /%26gt;



at the point where you are defining Freds details.



Then use



%26lt;a href=%26quot;#fred%26quot;%26gt;Freds Details%26lt;/a%26gt;



when you want to link to their details.



Nige



Web design question, anyone know the correct method for doing this?



Like this:



%26lt;a href=%26quot;#anchorResults%26quot;%26gt;Results Paragraph %26lt;/a%26gt;



Later or before



%26lt;a name=%26quot;anchorResults%26quot;%26gt;%26lt;/a%26gt;



%26lt;h2%26gt;Results%26lt;/h2%26gt;



Other Replys:Because you say that it should be a LIST of staff members:



%26lt;ul title=%26quot;Staff Members%26quot;%26gt;



鑱借伣%26lt;li%26gt;%26lt;a href=%26quot;#russell%26quot;%26gt;Russell%26lt;/a%26gt;%26lt;/li%26gt;



鑱借伣%26lt;li%26gt;%26lt;a href=%26quot;#henry%26quot;%26gt;Henry%26lt;/a%26gt;%26lt;/li%26gt;



鑱借伣%26lt;li%26gt;%26lt;a href=%26quot;#fred%26gt;Fred%26lt;/a%26gt;%26lt;/li%26gt;



鑱借伣%26lt;li%26gt;%26lt;a href=%26quot;#jean%26gt;Jean%26lt;/a%26gt;%26lt;/li%26gt;



鑱借伣%26lt;li%26gt;%26lt;a href=%26quot;#sally%26gt;Sally%26lt;/a%26gt;%26lt;/li%26gt;



鑱借伣%26lt;li%26gt;%26lt;a href=%26quot;#julie%26quot;%26gt;Julie%26lt;/a%26gt;%26lt;/li%26gt;



%26lt;/ul%26gt;



...I%26#039;ve set your elements as list items (li) in an unordered list (ul). It can also be an ordered list (ol), but that will produce numbers instead of bullets and that may denote some sort of ranking.



Now, in order for these things to work, there should be items in the same page that have ID%26#039;s that correspond to the %26quot;href%26quot; values of your links, like:



%26lt;p id=%26quot;russell%26quot;%26gt;This is the paragraph about Russell.%26lt;/p%26gt;



%26lt;p id=%26quot;henry%26quot;%26gt;This is the paragraph about Henry.%26lt;/p%26gt;



Having a href=%26quot;#russell%26quot; means that the anchor (a) links to an element within a page that is identified by the string following #. So, basically, you can think of id=%26quot;something%26quot; being the partner of href=%26quot;#something%26quot;.



If you have an anchor with href=%26quot;#something%26quot; and no element in the page has id=%26quot;something%26quot;, it won%26#039;t work.



Other Replys:simple



find the anchor symbol and click and name this where you want an anchor



always wise to put an anchor at top of page and call it top

How to create portal like web page?

Is there any tool which gives design time feature to lay down different boxes in a web page. I want to create a portal like page with simple HTML, CSS and JavaScript.



How to create portal like web page?





use Macromedia



How to create portal like web page?



there million tools to create portal like web pages-- that are very great tools, and are ready to use. If you want, just email me i will tell you all the tools and how to work with them