Real Estate Forums

REW CMS 1 Questions For users of the REW CMS 1 or classic backend - please post your 'how do I' questions here. If you have upgraded to CMS 2, please use the CMS 2 Forum

Reply
 
Thread Tools Display Modes
Old 04-02-2007, 02:26 PM
BarryC BarryC is offline
Real Estate Web Guru
 
Join Date: Dec 2006
Posts: 449
BarryC is on a distinguished road
Default Help with a page WYSIWYG editor

Hi,

I'm working on a school page on the back end of my site in the WYSIWYG editor. I'm definately not getting what I'm seeing.

I'm trying to have every "school report card" hyperlink appear uniform all the way down the page. In the editor it appears perfect, but when I go to look at the page it turns out looking like this:

http://dev47.rewdev.com/scottsdaleschools.php

The spacing should be correct. I use the space bar until the "school report card" moves down to the next line, and then I do 1 backspace so it comes back up to the correct line. This process is repeated down the page. Looks good in the editor, looks bad in a browser.

What am I doing wrong?

Thank you.
Reply With Quote
Old 04-02-2007, 03:28 PM
mkrotchie's Avatar
mkrotchie mkrotchie is offline
Real Estate WebMaster
 
Join Date: Mar 2007
Location: Tucson, AZ
Posts: 173
mkrotchie is on a distinguished road
Send a message via AIM to mkrotchie Send a message via Yahoo to mkrotchie
Default Re: Help with a page WYSIWYG editor

Barry,
Unfortunately spacing with a spacebar doesn't always translate to the web.

The easiest thing to do would be to make a table and use separate cells for the school info and the report card link.

Here is some sample code of what you want to do (right before your "Anasazi.." school in the code try pasting this):

Code:
<table width=90%>
 <tr valign="top">
   <td align="left"><a title="Anasazi elementary school website" href="http://anasazi.susd.org/" target="_blank">Anasazi Elementary School</a>
12121 North 124th Street&nbsp;<br />Scottsdale, AZ 85259&nbsp;<br />480.484.7300
   </td>
   <td align="right"><a title="Anasazi school report card" href="http://www.ade.state.az.us/srcs/ReportCards/60092007.pdf" target="_blank">School ReportCard</a>
   </td>
  </tr>
</table>
To repeat the above you would basically repeat the part between the <tr> and </tr> tags and substitute each school's info.

If you need help let me know.
__________________
Michael Krotchie - REALTOR® - Coldwell Banker Residential Brokerage, NRT LLC
6970 N. Oracle Road, Suite 100
Tucson, AZ 85704
520.404.4996 -- Mobile
520.544.4545 -- Office

Tucson Real Estate | Tucson Real Estate Blog
Reply With Quote
Old 04-02-2007, 04:23 PM
BarryC BarryC is offline
Real Estate Web Guru
 
Join Date: Dec 2006
Posts: 449
BarryC is on a distinguished road
Default Re: Help with a page WYSIWYG editor

Mike,

Thanks for the info. Is there an easy way to update my page, or would I be better off starting it over with the code you gave me?


Thanks again for your help.

By the way, how do you learn stuff like this. Do I need to take some html classes?
Reply With Quote
Old 04-02-2007, 04:52 PM
mkrotchie's Avatar
mkrotchie mkrotchie is offline
Real Estate WebMaster
 
Join Date: Mar 2007
Location: Tucson, AZ
Posts: 173
mkrotchie is on a distinguished road
Send a message via AIM to mkrotchie Send a message via Yahoo to mkrotchie
Default Re: Help with a page WYSIWYG editor

Hmm I'm not sure there is an 'easy' way to do it. It seems like the best way would be to copy/paste the code I gave you and then move the school/report info into each table (unless anyone has a better suggestion).

If you are using a WYSIWYG editor you should be able to see the outline of each individual table and you should be able to copy/paste it in the 'graphical' part of the editor.

As for the html I just doodled with it in my spare time until I learned it. Here is a basic tutorial set that teaches you all of the basics: http://www.w3schools.com/html/html_intro.asp
__________________
Michael Krotchie - REALTOR® - Coldwell Banker Residential Brokerage, NRT LLC
6970 N. Oracle Road, Suite 100
Tucson, AZ 85704
520.404.4996 -- Mobile
520.544.4545 -- Office

Tucson Real Estate | Tucson Real Estate Blog
Reply With Quote
Old 04-02-2007, 05:06 PM
BarryC BarryC is offline
Real Estate Web Guru
 
Join Date: Dec 2006
Posts: 449
BarryC is on a distinguished road
Default Re: Help with a page WYSIWYG editor

Michael,

Could you do me a huge favor and just post the code for the table without all the school information in it? I tried playing around with it, but seriously I am so limited regarding this kind of thing and I keep messing it up.

I would really appreciate it.
Reply With Quote
Old 04-02-2007, 05:30 PM
mkrotchie's Avatar
mkrotchie mkrotchie is offline
Real Estate WebMaster
 
Join Date: Mar 2007
Location: Tucson, AZ
Posts: 173
mkrotchie is on a distinguished road
Send a message via AIM to mkrotchie Send a message via Yahoo to mkrotchie
Default Re: Help with a page WYSIWYG editor

Quote:
Originally Posted by BarryC View Post
Michael,

Could you do me a huge favor and just post the code for the table without all the school information in it? I tried playing around with it, but seriously I am so limited regarding this kind of thing and I keep messing it up.

I would really appreciate it.

np

Code:
<table width=90%>
 <tr valign="top">
   <td align="left">SCHOOL INFO HERE
   </td>
   <td align="right">REPORT CARD HERE
   </td>
  </tr>
</table>
So basically you copy/paste the school info in the "SCHOOL INFO HERE" and the report card link in the "REPORT CARD HERE"

To repeat you would just copy the entire block over and over.
__________________
Michael Krotchie - REALTOR® - Coldwell Banker Residential Brokerage, NRT LLC
6970 N. Oracle Road, Suite 100
Tucson, AZ 85704
520.404.4996 -- Mobile
520.544.4545 -- Office

Tucson Real Estate | Tucson Real Estate Blog
Reply With Quote
Old 04-02-2007, 06:10 PM
BarryC BarryC is offline
Real Estate Web Guru
 
Join Date: Dec 2006
Posts: 449
BarryC is on a distinguished road
Default Re: Help with a page WYSIWYG editor

Michael,

Thank you very much for your help. I will give it a try tonight.
Reply With Quote
Old 04-02-2007, 10:26 PM
webmaster's Avatar
webmaster webmaster is offline
Administrator
 
Join Date: Apr 2004
Posts: 13,767
webmaster will become famous soon enough
Default Re: Help with a page WYSIWYG editor

No need to copy the entire table each time, just repeat the TR and TD elements like so

Code:
<table width=90%>
 <table width=90%>
 <tr valign="top">
   <td align="left">SCHOOL INFO HERE
   </td>
   <td align="right">REPORT CARD HERE
   </td>
  </tr>
<tr valign="top">
   <td align="left">SCHOOL INFO HERE
   </td>
   <td align="right">REPORT CARD HERE
   </td>
  </tr>
<tr valign="top">
   <td align="left">SCHOOL INFO HERE
   </td>
   <td align="right">REPORT CARD HERE
   </td>
  </tr>
<tr valign="top">
   <td align="left">SCHOOL INFO HERE
   </td>
   <td align="right">REPORT CARD HERE
   </td>
  </tr>
<tr valign="top">
   <td align="left">SCHOOL INFO HERE
   </td>
   <td align="right">REPORT CARD HERE
   </td>
  </tr>
</table>
__________________
Want to save up to 50% off Real estate webmasters product websites & common upgrades? Check out my latest blog post regarding our end of the year sale.
Reply With Quote
Old 04-03-2007, 05:13 AM
mkrotchie's Avatar
mkrotchie mkrotchie is offline
Real Estate WebMaster
 
Join Date: Mar 2007
Location: Tucson, AZ
Posts: 173
mkrotchie is on a distinguished road
Send a message via AIM to mkrotchie Send a message via Yahoo to mkrotchie
Default Re: Help with a page WYSIWYG editor

very true, just figured it would be easier to copy the entire table (visually)
__________________
Michael Krotchie - REALTOR® - Coldwell Banker Residential Brokerage, NRT LLC
6970 N. Oracle Road, Suite 100
Tucson, AZ 85704
520.404.4996 -- Mobile
520.544.4545 -- Office

Tucson Real Estate | Tucson Real Estate Blog
Reply With Quote
Old 04-03-2007, 07:40 AM
BarryC BarryC is offline
Real Estate Web Guru
 
Join Date: Dec 2006
Posts: 449
BarryC is on a distinguished road
Default Re: Help with a page WYSIWYG editor

You guys are so much help.

Thanks again I appreciate it.
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off



For our members

Main Sections

IDX Coverage Areas

Spiders Welcome

All times are GMT -7. The time now is 07:37 PM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.