Real Estate Forums
| Coding HTML, ASP, PHP, JAVA MYSQL and more. All coding questions should be asked here. |
![]() |
|
|
Thread Tools | Display Modes |
|
|||
|
Ok basicly I have a bunch of buttons and pictures and I want to overlap them with text. Anyways the purpose is that when people access my site they will be able to access it on dailup with out loading a bunch of images. Hope that made sense.
Ohhh here is the site that I would it work for. Use this link. Mysite Also any suggestions that you might recommend. NOTICE the site is in very early development everything was done by hand so its not the snazziest around. ![]() |
|
||||
|
I think the best way to do this would be with CSS. Just specify a background image for that class, then assign that class to the menu item(s), so each menu item will have that image as their background.
Or you could specify an image as the background for that table cell... but the CSS works better.
__________________
Deanna Mazurek Find Orange County real estate information for buying or selling your next home. |
|
|||
|
I have never used CSS before. Could some one provide a site that has that information? Please dont send me major tutorials on CSS a to z but just for this example. I will sometime get on it but not with this project. I used HTML and WYSIWYG editors plenty of times along with some php and javascript. Thanks in advanced.
|
|
||||
|
Here's a sample site: http://www.investmentpropertysolutions.net/
This goes in the <head>: <link rel="stylesheet" type="text/css" href="/styles.css" /> This is the styles.css file (you can the file anything.css) <style type="text/css"> <!-- .iMenu {font-family:Verdana,Arial,Helvetica,Geneva; padding:7px; width:154; color:#324967; font-size:11px; font-weight:normal; text-decoration:none; background-image:url(/_images/top-forward.gif); background-repeat:no-repeat; padding-left:18px; padding-right:1px;} .iMenu:hover {font-family:Verdana,Arial,Helvetica,Geneva; padding:7px; width:154; color:#990000; font-size:11px; font-weight:normal; text-decoration:none; background:#E2E2E2; background-image:url(/_images/top-down.gif); background-repeat:no-repeat; padding-left:18px; padding-right:1px;} --> </style> And here's a href tag: <a href="/a_for_rent.mv" class="iMenu">Your text here</a> the great thing about this is if you want to change what the links look like, you just change the one file and all links on your whole website for that class change. You can do these CSS for form button, form boxes, fonts, lists... just about any HTML tag.
__________________
Deanna Mazurek Find Orange County real estate information for buying or selling your next home. |
|
|||
|
Quote:
|
|
|||
|
Thanks for all the responses. I am sorry that I still dont understand. Ok I am using NVU, and opensource WYSIWYG editor. Anyways here is what I want to know.
Ok I this piece of code: Code:
<td
style="background-color: rgb(130, 168, 204); width: 166px;">
<div style="text-align: center;"><a
href="index1024x768.html"><span
style="text-decoration: underline;"></span></a><a
href="index1024x768.html"><span
style="text-decoration: underline;"><img
style="border: 0px solid ; width: 166px; height: 23px;" alt=""
src="Images/1024/buttons/button_home_off.png"
srcover="Images/1024/buttons/button_home_on.png"></span></a><br>
<a href="index1024x768.html"><img
style="border: 0px solid ; width: 106px; height: 131px;" alt=""
src="Images/1024/agent.jpg"></a><a
href="index1024x768.html"><span
style="text-decoration: underline;"></span></a></div>
</td>
Occastles: I noticed that when I went to the site you mentioned and it rendered incorrectly in Firefox. I tested it in IE6 but I would like Firefox users to be able to use it to. Any more advice??? I am open to opinions. Please look at my site to understand what I am trying to achieve. My site Thanks in advance. |
![]() |
| Thread Tools | |
| Display Modes | |
|
|