Need help with misc FP 2000 questions ...

B

brooksr

1. I've turned on a theme and the colors, fonts and text seems to be
in effect, but the fancy banner with double lines, etc. is not
showing. How do I fix this?

2. How do you draw horizontal lines?

3. I turned on CSS for the theme. Shouldn't there be a *.CSS file
somewhere?

4. What does &nbsp mean in my html code?

5. I have an image on the right and text on the left of it, but the
text is too close to the image. How do I move it over to the right?

Thanks,

Brooks
 
T

Trevor L.

I can answer some, not others
1. I've turned on a theme and the colors, fonts and text seems to be
in effect, but the fancy banner with double lines, etc. is not
showing. How do I fix this?

I have never used themes, so I have no experience which can help
2. How do you draw horizontal lines?

3. I turned on CSS for the theme. Shouldn't there be a *.CSS file
somewhere?

Again, I don't use themes, but I expect you should find some CSS in the
<head> section.

It will look like this:
<style type='text/css'>
body { font-family: arial,sans-serif; font-size: 100%; }
</style>

What is placed between the opening and closing <style> tags is the CSS

Either that or you will find a link like this in the <head> section:
4. What does &nbsp mean in my html code?

&nbsp; (note the ;) is a single non-breaking space
(I think non-breaking means "on the same line")

It is one way of adding space, but it should only be used for a few spaces

5. I have an image on the right and text on the left of it, but the
text is too close to the image. How do I move it over to the right?

You can use &nsbp; but it may be better to use table cells.

Put the text in one and the image in another. You can then use margins to
space the items within the cell
--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
----------------------------------------
 
G

Guest

Brooksr,
by other question if you mean #4.
the answer is space if the manual code to add a space
to your code. you can put in as many spaces as you want but the
computer will only read the FIRST one unless you code them in
using the code above.
LA
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

FP2000 Theme and CSS where is it? 8
need help with CSS and DWT 1
FP Themes 1
2 questions about themes 11
Publishing FP 2000 8
CSS help 18
need help with menu/css/fp2003 2
global navigation buttons 1

Top