Trying to create box for text but....

Hi all.
So I am new to the software.  What I am trying to do is create a box for text.  I want it to be "above" the background so that the background color does not color in the back of the text box.
An example can be found http://www.tree.com/
At the "about tree.com" that is (a more coloful, rounded version) of what I am looking for. It is a very common thing to see in sites, I just can't figure it out.
Thanks,
Patrick

Patrick
Your question is so basic it really requires a fairly lengthy answer, the best advice is for you to find a beginner totorial on html/css. The software is really just a tool, but you really need to understand the underlying code..
Text, as well as all content sits in elements, which reside in the body of the html code. Each element has its own properties, such as a background color or image. (not to mention the content has its own stylings)  These are set in the CSS (Cascading Style Sheets). So to give you an anwer to your question is not that simple.
So best adviced is to google beginner HTML/CSS and see what pops up.
HTH
Gary

Similar Messages

  • My iMessage does not appear to be working. Every time I go to reply to an existing message it just appears as normal text. I have tried to create a new message but it still just defaults to normal messages. I have checked my settings but looks ok. Help?

    My iMessage does not appear to be working. Every time I go to reply to an existing message it just appears as normal text. I have tried to create a new message but it still just defaults to normal messages. I have checked my settings but it is all set up as it should be. Is there anything I've missed or could try? Thanks

    Try the following:
    In Finder, select the problematic volume and then press command-I.
    Expand the Sharing & permissions section if it's collapsed.
    If the section is locked, then unlock it by pressing the padlock button and then authenticating as directed.
    Tick/check Ignore ownership on this volume.

  • Living in Dubai where many apps are blocked. How can I get around ? Tried to create a new Id but my billing address in Dubai will not match the criteria for an account in the US. Help please to get around the censorship...thnaks

    Living in Dubai where many apps are blocked. How can I get around ? Tried to create a new Id but my billing address in Dubai will not match the criteria for an account in the US. Help please to get around the censorship...thanks

    The censorship in regards to certain apps not being available in your country is by your country, not by Apple.
    Due to various laws and licensing in each country, in order to have an iTunes store account in a particular country you must have a credit card with a billing address in that country. If this were up to Apple, there would be no such requirement and there would be only one iTunes store for the entire world, but various laws, regulations, and licensing issues in each country, this is required by Apple.

  • HT2589 I am trying to create a new account but every time I put in my billing information and numbers, the same screen pops up with, in red "For assistance contact iTunes Support". I am currently overseas and want my imessage to work correctly

    I am trying to create a new account but every time I put in my billing information and numbers, the same screen pops up with, in red "For assistance contact iTunes Support". I am currently overseas and want my imessage to work correctly

    to contact iTunes store support, follow these steps:
    1. Go to expresslane.apple.com
    2. select 'itunes' and then 'itunes store'
    3. select a topic and a subject
    4. click 'continue' and then 'email'
    5. fill out the form and explain your situation
    6. they will respond within 24 hours usually
    Good luck

  • I am creating box for two coloums in sap script

    hi,
    i am creating box for two coloums
    when i am creating box for this two coloums this box is displaying from the top.
    when i am decreasing this hight it is decreasing from the buttom of the window
    i want to decrease from the top of window
    can u explan plz
    this requirement
    plzz

    see this:
    BOX Command
    Syntax
    /: BOX [XPOS] [YPOS] [WIDTH] [HEIGHT] [FRAME] [INTENSITY]
    Effect: draws a box of the specified size at the specified position.
    Parameters: For each of XPOS, YPOS, WIDTH, HEIGHT, and FRAME, you must specify both a measurement and a unit of measurement. Specify the INTENSITY parameter as a percentage between 0 and 100.
    XPOS, YPOS
    Upper left corner of the box, relative to the values of the POSITION command.
    Default: Values specified in the POSITION command.
    The following calculation is performed internally to determine the absolute output position of a box on the page:
    X(abs) = XORIGIN + XPOS
    Y(abs) = YORIGIN + YPOS
    WIDTH
    Width of the box. Default: WIDTH value of the SIZE command.
    HEIGHT
    Height of the box. Default: HEIGHT value of the SIZE command.
    FRAME
    Thickness of frame.
    Default: 0 (no frame).
    INTENSITY
    Grayscale of box contents as %.
    Default: 100 (full black)
    Measurements: You must specify decimal numbers as literal values (like ABAP numeric constants) by enclosing them in inverted commas. Use the period as the decimal point character. See also the examples listed below.
    Units of measurement: The following units of measurement may be used:
    TW (twip)
    PT (point)
    IN (inch)
    MM (millimeter)
    CM (centimeter)
    LN (line)
    CH (character).
    The following conversion factors apply:
    1 TW = 1/20 PT
    1 PT = 1/72 IN
    1 IN = 2.54 CM
    1 CM = 10 MM
    1 CH = height of a character relative to the CPI specification in the form header
    1 LN = height of a line relative to the LPI specification in the form header
    /: BOX FRAME 10 TW
    Draws a frame around the current window with a frame thickness of 10 TW (= 0.5 PT).
    /: BOX INTENSITY 10
    Fills the window background with shading having a gray scale of 10 %.
    /: BOX HEIGHT 0 TW FRAME 10 TW
    Draws a horizontal line across the complete top edge of the window.
    /: BOX WIDTH 0 TW FRAME 10 TW
    Draws a vertical line along the complete height of the left hand edge of the window.
    /: BOX WIDTH '17.5' CM HEIGHT 1 CM FRAME 10 TW INTENSITY 15
    /: BOX WIDTH '17.5' CM HEIGHT '13.5' CM FRAME 10 TW
    /: BOX XPOS '10.0' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW
    /: BOX XPOS '13.5' CM WIDTH 0 TW HEIGHT '13.5' CM FRAME 10 TW
    Draws two rectangles and two lines to construct a table of three columns with a highlighted heading section.
    POSITION Command
    Syntax
    /: POSITION [XORIGIN] [YORIGIN] [WINDOW] [PAGE]
    Effect: Sets the origin for the coordinate system used by the XPOS and YPOS parameters of the BOX command. When a window is first started, the POSITION value is set to refer to the upper left corner of the window (default setting).
    Parameters: If a parameter value does not have a leading sign, then its value is interpreted as an absolute value, in other words, as a value that specifies an offset from the upper left corner of the output page. If a parameter value is specified with a leading sign, then the new value of the parameter is calculated relative to the old value. If one of the parameter specifications is missing, then no change is made to this parameter.
    XORIGIN, YORIGIN
    Origin of the coordinate system.
    WINDOW
    Sets the values for the left and upper edges to match those of the current window (default setting).
    PAGE
    Sets the values for the left and upper edges to match those of the current output page (XORIGIN = 0 cm, YORIGIN = 0 cm).
    /: POSITION WINDOW
    Sets the origin for the coordinate system to the upper left corner of the window.
    /: POSITION XORIGIN 2 CM YORIGIN '2.5 CM'
    Sets the origin for the coordinate system to a point 2 cm from the left edge and 2.5 cm from the upper edge of the output page.
    /: POSITION XORIGIN '-1.5' CM YORIGIN -1 CM
    Shifts the origin for the coordinates 1.5 cm to the left and 1 cm up.
    Pre-Setting BOX Position Arguments
    You can use the POSITION and SIZE commands to preset some arguments in the BOX command. POSITION presets the start point (upper left corner) of a box or line. SIZE specifies the width and height of a box.
    You can use POSITION and SIZE to preset arguments, but you can also set the start point and size arguments of a box or line directly in the BOX command.
    By default, if no positioning is specified, the upper left corner of a box or halftone or the top of a line is aligned with current SAPscript window. That is, the upper left corner of the box, halftone, or line starts at the upper left corner of the current window in the active form. By default, the height and width of a box are set to the height and width of the current window.
    Use POSITION and SIZE to preset the arguments in a BOX command in the following situations:
    The BOX command exceeds the 132-character (1 line in SAPscript) length limitation if you specify all arguments directly in the command. You may exceed this length limit if, for example, you use symbols in a command.
    By pre-setting arguments with POSITION and SIZE, you can work around the limitation on the length of a command. You do not need to specify the preset arguments in the BOX command.
    You want to use the enhanced capabilities of POSITION for adjusting the starting point of a box or line.
    With BOX, you can specify an offset for the starting point only as a whole number (non-negative integer). This command would print a box starting 1 CM to the right and 1 CM down from the left upper corner of a window:
    /: BOX XPOS '1' CM YPOS '1' CM
    With POSITION; you can adjust the position of a line or box relative to a window much more precisely. In the POSITION command, you can specify positive and negative offsets and use non-integer numbers.
    Example: The commands shown below position a box slightly to the left and slightly above a window. This leaves a margin between the edge of the box and the text in the window.
    /: POSITION XORIGIN '-.2' CM YORIGIN '-.2' CM
    /: SIZE WIDTH '.2' CM HEIGHT '.2' CM
    /: BOX FRAME 10 TW
    (Note that the box must be enlarged to accommodate the shift. If it is not enlarged, then it will not cover all of the window.)
    You can also use POSITION to set the starting point to the upper left corner of the active page format. Example: POSITION PAGE moves the starting point from the active window to the active page format.
    You want to use the relative sizing capabilities of SIZE to adjust the size of a box, line, or halftone.
    With BOX, you can make only absolute size specifications. BOX HEIGHT, for example, overrides the default height setting to the height of the current window.
    With SIZE, you can adjust the size of a box or a line with respect to its previously-set dimensions. The following commands would, for example, draw a frame 1 CM in from the margins of the paper:
    /: POSITION PAGE
    /: POSITION XORIGIN 1 CM YORIGIN 1 CM
    /: SIZE PAGE
    /: SIZE HEIGHT '-2' CM WIDTH '-2' CM
    REWARD IF HELPFUL

  • Why does my itunes crash after start up with an "APPCRASH" error every time i open it?! I have been trying to fix this for weeks but all i can do it re-install it every other day which does nothing!

    Why does my itunes crash after start up with an "APPCRASH" error every time i open it?! I have been trying to fix this for weeks but all i can do it re-install it every other day which does nothing! I am desperate to get access to my itunes to get music on my phone and all of this just makes me want me to sell my iphone since there is no other way to add music to my phone. If things go get sorted soon you can say goodbye to my support.

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert to an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for installation or performance issues, or compatibility with QuickTime or third party software.
    Your library should be unaffected by these steps but there are also links to backup and recovery advice should it be needed.
    tt2

  • I am trying to create a community addition, but just keep getting *Error occurred while saving your data.

    I am trying to create a community addition, but just keep getting   *Error occurred while saving your data.
    Trying to add the following community addtion for:     http://technet.microsoft.com/en-us/library/cc755631(v=ws.10).aspx
    In the above website do NOT copy the command, you have to type it in.  Webpage Error.
    You can use both    dsquery server –hasfsmo schema    and    dsquery server -forest –hasfsmo schema
    The problem is, I believe, a hidden character in the command on this webpage which follows the Paste function and results in the error Unknown Parameter error.

    Hi John,
    You might have better luck posting this in the library feedback forum here:
    http://social.msdn.microsoft.com/Forums/en-us/home?forum=libraryfeedback&filter=alltypes&sort=lastpostdesc
    It seems odd to me that the TechNet library feedback forum lives under the MSDN branding, but that seems to be the case.
    Don't retire TechNet! -
    (Don't give up yet - 12,575+ strong and growing)

  • Trying to create reference for application in target server failed;

    I have an ear file that I am trying to deploy using the "Deploy Enterprise Applications/Modules" page on the console.
    The console gives me a message saying
    "Trying to create reference for application in target server failed; Application tsom_oes is not found in config context"
    tsom_oes is the name of my application, or it was. I've changed every instance of that name I can find and still it tells me it is looking for tsom_oes.
    Can anyone tell me just what is looking for it and where it is expecting to find it?
    I ran the verifier on the ear file and it did give me some errors, although none of them seem to relate to this. Specifically it told me it did not like the xml in a tld file I'm using
    and it seems to think Hibernate needs a bunch of JBoss classes (none of which are referred to by my app anywhere). I'm guessing the verify is mistaken on those, but if anyone knows better I'd like to hear
    Meanwhile I don't know why it won't deploy, nor why it is still looking for tsom_oes.
    One more thing I must add: this ear file exposes portlets which I am hoping will be accessible through the portal server. The ear file works on JBoss, but I have added what I think are the necessary sun xml files to make it run here.
    By 'exposes portlets' I mean that I have created a sun-portlet.xml and implemented the appropriate interfaces (all of which work on JBoss).
    Environment:
    Sun App server 9.1 plus portal server 7.2 on Windows XP

    Okay, I found the answer. I had hacked the domain.xml for this some time ago (this task has been off and on a lot) and forgotten.
    I found the tsom_oes reference in there and removed it. Now it deploys.
    Hopefully this helps someone else some day... probably not though, eh?

  • Does anyone know if theres a way to create ringtones for text messaging?

    I can create ringtones for phone calls, but is there a way to create ringtones for text messaging?

    There is no current support for that. If you like to give Apple feedback and request this, go to http://www.apple.com/feedback/

  • I'm trying to send a group text but the recipient automatically defaults to send to their email.

    I'm trying to send a group text, but when I type in someones name, it automatically defaults to email.  It doesn't even give me the option to a choose phone number.  It only does with certain contacts.  Also, when a message doesn't go through, usually there is a red try again spot I can click, but when I click it, it only gives me the option to send as an email not text.

    99% chance you don't have the phone number in your contacts correctly.   Make sure there is an area code, etc.

  • I am trying to create my Apple ID, but not receiving the verification link from Apple,. I get the email but NOT the link,. any suggestions

    I am trying to create my Apple ID, but not receiving the verification link from Apple,. I get the email but NOT the link,. I have triple checked my email address and all Apple account info, all of which are correct. Any suggestions?

    Where are you trying to create it?
    Go to appleid.apple.com and create it there.   Type the country name in the space and a dropdown should appear. Nigeria is clearly available there.

  • I have lightroom 5 when i cannot import my RAW images. When I tried a blank box for the images are there stating tha the preview for the image is unavailable

    I have lightroom 5 and I cannot import my RAW images When I tried a blank box for my images appear stating that my previews is unavailable in this file. When i do hit import it comes out 0 in my catalog

    Jim Hess asked:
    And if you use Nikon Transfer to download the images?
    I don't see the answer.

  • HT1420 Just have a new iPad retina display. Trying to authorise it for iTunes but have no pull down menus when I oppen iTunes.  ???

    Just have a new iPad retina display. Trying to authorise it for iTunes but have no pull down menus when I oppen iTunes.  ???

    If you have iTunes 11 on a Windows system, press Control-B to show the menus.
    Regards.

  • I had an iTune card gift and i tried to made reedem for it but the iTune store show that it is not activated so what should I do to activate it ?

    I had an iTune card gift and i tried to made reedem for it but the iTune store show that it is not activated so what should I do to activate it ?

    What you normally should do is go back the retailer from whom you purchased the card and discuss the problem with them. They should either correctly activate the card or give you a new one. If they refuse to help, as some retailers do, or this was a gift so you cannot contact the retailer, go here:
    iTunes Support
    and follow the instructions to report the issue to the iTunes Store.
    Regards.

  • I got Photoshop Elements 11 (in a box) for Xmas but CD reader is broken. Can I download?

    I got Photoshop Elements 11 (in a box) for Xmas but my CD reader is broken. Can I download and install?

    Yes.
    Download the Trial version from the Adobe website and activate it with your serial number.

Maybe you are looking for

  • Error when creating Web Application

    We have a 2 server farm connecting to a SQL cluster.  Servers 1 and 2 are web Front Ends.  When I want create in central admin a new web app  I get the following error.  It actually creates the content DB and I can see new web app in central admin bu

  • Choosing NTSC or PAL for uploading to YouTube

    I'm trying to upload a movie shot in NTSC to YouTube butonly see choices for PAL resolution.  How can I bring up NTSC choices?

  • Conditional Display based on Function and Application Item?

    I have a function within my DB that checks if the STAFF_ID (an application level item) is a "Super User" within my application. The function ("is_super-user") returns 1 if the STAFF_ID given is a Super User. (I am not using ApEx users/groups) How wou

  • Need to monitor soa-infra composite application

    In our Prod environment, we had an issue with our database and after resolving the issue, I just happened to go into the FMW console and noticed that the soa-infra composite application was in a "Failed" status even though the soa_server1 managed ser

  • How to separate RAW and JPEG files from shoot?

    I'm a beginner at processing RAW files and would appreciate some help. I have concerns about moving files around in Lightroom and misplacing them.  My question is: I have imported 100 or so photos of a portrait session into Lightroom 4. Shot NEF + JP