This is a discussion on "Button and box labels.What is the best way?" within the Starting Out section. This forum, and the thread "Button and box labels.What is the best way? are both part of the Design Your Website category.
|
|
|
|
|
![]() |
||
Button and box labels.What is the best way?
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
#1
|
|||
|
|||
|
Button and box labels.What is the best way?
I'm a newbie to programming website but I have been involved in design for a while. Wanted to ask you guys what is better:
Incorporating the button and box titles(e.g Search Box has the title "Quick Search") into the image of the box. or adding the titles in while developing (e.g Dreamweaver). I'm a little bit worried that I'll loose the effect by coding the text in and then placing it. Although it not likely to be a important as far as SEO goes, I'm just a bit concerned with trying to complete the project following best practice. Thanx |
|
|
|
#2
|
|||
|
|||
|
Re: Button and box labels.What is the best way?
If i understand what u meant, you can put ur text in images and then add alt texts for them in coding part...
__________________
Last Blog Entry: Throughout IRAN (Dec 10th, 2007)
|
|
#3
|
|||
|
|||
|
Re: Button and box labels.What is the best way?
What i meant was this. I've designed my website in Photoshop and the images for the buttons have been saved with the buttons text as part of the image. e.g button that says "feedback".
What i'm trying to find out is whether it is better to save that image without the text on it and then insert the text onto the image using CSS or have it all as a single image. Ideally I would like to have the text as part of the image so that i don't end up loosing the effects. If it doesnt really matter, thats ok, but i need to know if its going to effect the site in some negative way. |
|
#4
|
|||
|
|||
|
Re: Button and box labels.What is the best way?
i think its better to put text and images together as one image file for better visual effects, and put complete alt text and image names in code.
but sometimes u may need to create dynamic buttons for ur site that needs to use texts on it.
__________________
Last Blog Entry: Throughout IRAN (Dec 10th, 2007)
|
|
#5
|
|||
|
|||
|
over use of layers?
Thanx. Another thing that has been bothering me is whether I can use layers for most of my layout. Is there such a thing as using too many layers and does it effect the speed that your pages load at.
|
|
#6
|
|||
|
|||
|
Re: Button and box labels.What is the best way?
can i see ur site ?
__________________
Last Blog Entry: Throughout IRAN (Dec 10th, 2007)
|
|
#7
|
|||
|
|||
|
Re: Button and box labels.What is the best way?
Do you mean the code or the design image. If its the code then its pretty pointless because I've just started.
|
|
#8
|
|||
|
|||
|
Re: Button and box labels.What is the best way?
As far as I know, layers in Dreamweaver are DIV tags with absolute positioning.
Like marSoul, I think it would be best to put a link to the site so we can have a goose at it. Dreamweaver doesn't consider the designer when inserting these layers so if you add quite a few without watching what is happening with the source code you can quickly end up with confusing and unreadable code. Because of this you may find cross browser problems etc, that are very hard to solve because the code is cluttered. As for the buttons, I agree with marSoul. Take into account how often the buttons may need to be edited. If they are going to stay the same once inserted use images, if they might need editing often its best to have editable text - simply for your own benefit regarding time management. Edit - You posted while I was posting. Ignore my second sentence. |
|
#9
|
|||
|
|||
|
Re: Button and box labels.What is the best way?
ok, then describe more on what u want to do
__________________
Last Blog Entry: Throughout IRAN (Dec 10th, 2007)
|
|
#10
|
|||
|
|||
|
Re: Button and box labels.What is the best way?
I have a Navigation bar at the top with about eight buttons, about 4 boxes on the page(Quick Search, Featured listings, Feedback etc.), a browse menu in the main section and below that links to content pages. Some of the layout can be done with a table for alignment but because I'm new to this web development stuff I'm a little unsure of adding every single image on the page as a layer. The fact that my ability to code is not fantastic doesn't help either. Maybe I should just do it all as layers and if it becomes a problem then jump that hurdle when i get there.
|
|
#11
|
||||
|
||||
|
Re: Button and box labels.What is the best way?
Have you got a hosted example of your website? Sometimes it is easier to help if you have a visual rather than text.
__________________
Marc Staff Manager - Webforumz.com Want to be a moderator? PM me. |
|
#12
|
|||
|
|||
|
Re: Button and box labels.What is the best way?
All good questions...
Tables are a not a good design choice. Layers in dreamweaver are a nightmare to work with as Nortus mentioned they position themselves absolutely. It is so difficult to get everything exact, and it's just a poor way of making a site. You are going to be pulling your hair out trying to get everything aligned. Especially from one browser to the next. The best way to design (and I know you don't want to hear this) is by using Dreamweaver's code view ONLY. Learning xhtml and then making it beautiful with css. Since you are just starting out, take it step by step and put ONE element in at a time with xhtml/css. Before you know it, you'll have your site complete, have learned a ton and have a really well designed site. The beginner's forums has so many useful posts in the sticky area that really would help make learning it easier. Be sure to design this site for Firefox first and then you will be able to make small adjustments for IE. |
|
#13
|
|||
|
|||
|
Re: Button and box labels.What is the best way?
as Lchad says try to avoid tables, and use css instead ...
if you cant code the css, you can use photoshop slices to convert them to css for you
__________________
Last Blog Entry: Throughout IRAN (Dec 10th, 2007)
|
|
#14
|
|||
|
|||
|
Re: Button and box labels.What is the best way?
|
|
#15
|
|||
|
|||
|
Re: Button and box labels.What is the best way?
please attach the file
__________________
Last Blog Entry: Throughout IRAN (Dec 10th, 2007)
|
|
#16
|
|||
|
|||
|
Re: Button and box labels.What is the best way?
here we go
|
|
#17
|
|||
|
|||
|
Re: Button and box labels.What is the best way?
we can simply separate this to 5 parts, header, left container, center container, right container and footer
you can create 5 DIV for each of them and put ur content in them. then using css and create styles for each of them.
__________________
Last Blog Entry: Throughout IRAN (Dec 10th, 2007)
|
|
#18
|
|||
|
|||
|
Re: Button and box labels.What is the best way?
I'll give that a try, Thanx
|
![]() |