Help with Text Alignment Please

I've been trying to fit text on the tabs all morning and just can't do it! ? Is it possible to position them accurately given that the tabs are not in a straight line. I would like to have them as links.
Please see attched and link http://www.greenpatchwebsites.com/new/index.html
Thanks v much in advance.

It's not just that the tabs are not on the same horizontal line, you're trying to use HTML/CSS to get words to hover over an image.  This is hard because the image is fixed, while text is dynamic, meaning it will be resized and moved around differently on each browser and monitor resolution.
To get the text to fit into the tabs, and NOT move relative to them, you need to do one of two things.  Either design "tabs" using CSS (or Javascript, or a combination of both), or put the text you want into the tab image, and use an image map to make the tabs clickable links.

Similar Messages

  • Help with access control please

    So I'm trying to set up my brother's PSP to the wirless network through MAC address timed access. What I want to do is make it so that he can only access it through certain times in the day. I'm having troubles with actually getting it to work. Everytime I set it up, the PSP only show's up as a DHCP client and not a Wireless client. I tried the option panel with the add wireless clients through the first try access. Could I get some help with this issue please? Thanks!

    Just to calm your fears... There is no conspiracy. If someone had an answer or a suggestion they would post it.

  • Help with email alignment

    Hi Guys, looking for some help with center alignment of an email.
    Its center aligning fine in dreamweaver preview and in the preview of mail chimp, but when I sent it to Gmail it's aligned to the left.
    Any ideas why this is?
    Bear in mind im a rookie in coding and Dreamweaver.
    Hope the code below helps...
    Thanks!

    Thanks for responing!
    Removing display: inline-table; worked!
    Its now center aligned.
    Cheers osgood_

  • Please Help with text parsing problem

    Hello,
    I have the following text in a file (cut and pasted from VI)
    12 15 03 12 15 03 81 5 80053 1 1,2,3 $23.00 1 ^M
    12 15 03 12 15 03 81 5 84550 1 1,2,3 $15.00 1 ^M
    12 15 03 12 15 03 81 5 84100 1 1,2,3 $15.00 1 ^M
    12 15 03 12 15 03 81 5 83615 1 1,2,3 $15.00 1 ^M
    12 15 03 12 15 03 81 5 82977 1 1,2,3 $15.00 1 ^M
    12 15 03 12 15 03 81 5 80061 1 1,2,3 $44.00 1 ^M
    12 15 03 12 15 03 81 5 83721 1 1,2,3 $15.00 1 ^M
    12 15 03 12 15 03 81 5 84439 1 1,2,3 $44.00 1 ^M
    12 15 03 12 15 03 81 5 84443 1 1,2,3 $40.00 1 ^M
    12 15 03 12 15 03 81 5 85025 1 1,2,3 $26.00 1 ^M
    12 15 03 12 15 03 81 5 85008 1 1,2,3 $5.00 1 ^M
    this method reads the text from a file and stores it in a ArrayList
        public ArrayList readInData(){
            File claimFile = new File(fullClaimPath);
            ArrayList returnDataAL = new ArrayList();
            if(!claimFile.exists()){
                System.out.println("Error: claim data - File Not Found");
                System.exit(1);
            try{
                BufferedReader br = new BufferedReader(new FileReader(claimFile));
                String s;
                while ((s = br.readLine()) != null){
                         System.out.println(s + " HHHH");
                        returnDataAL.add(s);
            }catch(Exception e){ System.out.println(e);}
            return returnDataAL;
        }//close loadFile()if i print the lines from above ... from the arraylist ... here is waht i get ...
    2 15 03 12 15 03 81 5 80053 1 1,2,3 $23.00 1 HHHH
    HHHH
    12 15 03 12 15 03 81 5 84550 1 1,2,3 $15.00 1 HHHH
    HHHH
    12 15 03 12 15 03 81 5 84100 1 1,2,3 $15.00 1 HHHH
    HHHH
    12 15 03 12 15 03 81 5 83615 1 1,2,3 $15.00 1 HHHH
    HHHH
    12 15 03 12 15 03 81 5 82977 1 1,2,3 $15.00 1 HHHH
    HHHH
    12 15 03 12 15 03 81 5 80061 1 1,2,3 $44.00 1 HHHH
    HHHH
    12 15 03 12 15 03 81 5 83721 1 1,2,3 $15.00 1 HHHH
    HHHH
    12 15 03 12 15 03 81 5 84439 1 1,2,3 $44.00 1 HHHH
    HHHH
    12 15 03 12 15 03 81 5 84443 1 1,2,3 $40.00 1 HHHH
    HHHH
    12 15 03 12 15 03 81 5 85025 1 1,2,3 $26.00 1 HHHH
    HHHH
    12 15 03 12 15 03 81 5 85008 1 1,2,3 $5.00 1 HHHH
    HHHH
    I see the ^M on the end of the lines ... but i dont understand why im getting the blank lines
    in between each entry ... I printed "HHHH" just to help with debugging ... anyone have any ideas why i am getting the extra blank lines?
    thanks,
    jd

    maybe its a FileReader deal.. Im not sure, maybe try using InputStreams. This code works for me (it reads from data.txt), give it a try and see if it works:
    import java.io.*;
    public class Example {
         public Example() throws IOException {
              BufferedReader b = new BufferedReader(new InputStreamReader(new FileInputStream("data.txt")));
              String s = "";
              while ((s = b.readLine()) != null) {
                   System.out.println(s);
              b.close();
         public static void main(String[] args) {
              try {
                   new Example();
              catch (IOException e) {
                   e.printStackTrace();
    }

  • Help with UILabel subclass please

    Hello all... I have a UILabel subclass I call CustomLabel. Ive been googling and reading the apple docs this entire week to figure this out. The few examples Ive seen, I dont think Im doing it right.
    Im trying to create a subclass to use throughout my project. Every label will have these properties so I figured why not subclass. So through a lot of trial and error I ended up with this...
    CustomLabel.h
    #import <UIKit/UIKit.h>
    @interface CustomLabel : UILabel {
    @property (nonatomic) CGSize shadowOffset;
    @property (nonatomic) UITextAlignment *textAlignment;
    @property (nonatomic, retain) UIColor *shadowColor;
    @property (nonatomic, retain) UIColor *textColor;
    @property (nonatomic, retain) UIColor *backgroundColor;
    @property (nonatomic, retain) UIFont *font;
    @end
    CustomLabel.m
    #import "CustomLabel.h"
    #import "Constants.h"
    @implementation CustomLabel
    @synthesize textColor;
    @synthesize backgroundColor;
    @synthesize font;
    @synthesize shadowColor;
    @synthesize shadowOffset;
    - (id)initWithFrame:(CGRect)frame {
    if ((self = [super initWithFrame:frame])) {
    self.textColor = [UIColor whiteColor];
    self.backgroundColor = [UIColor clearColor];
    self.font = SMALL_CHALKDUSTER;
    self.shadowColor = [UIColor colorWithRed:0.0f green:0.0f blue:0.0f alpha:0.35f];
    self.shadowOffset = CGSizeMake (0, 2);
    self.textAlignment = UITextAlignmentCenter;
    return self;
    - (void)dealloc {
    [super dealloc];
    @end
    I then allocate a label like so...
    ViewController.h
    CustomLabel *myLabel;
    @property (nonatomic, retain) CustomLabel *myLabel;
    ViewController.m
    myLabel = [[CustomLabel alloc] init];
    myLabel.text = @"Blah blah blah";
    I feel like Im way off on this... I must be since it isnt setting any of the properties Im trying to use in the subclass.
    I found an older post on the forums here for setting the textAlignment but for some reason I couldnt apply the same logic to mine.
    So can anyone help me with this subclass please and thank you?

    xnav... thanks a ton for pointing me to this link. Its got me closer to my end goal than I was before. Right now I have...
    CustomLabel.h
    #import <UIKit/UIKit.h>
    @interface CustomLabel : UILabel {
    @end
    CustomLabel.m
    #import "CustomLabel.h"
    #import "Constants.h"
    @implementation CustomLabel
    - (void) drawRect:(CGRect)rect {
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    UIColor *lineColor = [UIColor whiteColor];
    UIColor *shColor = [UIColor colorWithRed:0.0f green:0.0f blue:0.0f alpha:0.35f];
    //UIColor *bkgColor = [UIColor clearColor];
    CGContextSetFillColorWithColor(ctx, lineColor.CGColor);
    CGContextSetShadowWithColor(ctx, CGSizeMake(0, 2), self.font.pointSize / 2.0, shColor.CGColor);
    //CGRect drawRect = CGRectMake(rect.origin.x, rect.origin.y,rect.size.width, rect.size.height);
    //CGContextSetAlpha(ctx, 0) ;
    //CGContextFillRect(ctx, drawRect);
    //CGContextSetStrokeColorWithColor(ctx, [[UIColor clearColor] CGColor]);
    //CGContextSetFillColorWithColor(ctx, [[UIColor clearColor] CGColor]);
    CGContextSetBlendMode(ctx, kCGBlendModeClear);
    //CGContextAddEllipseInRect(ctx,CGRectMake(size.width-(size.width/2)-(size.width/10), (size.width/10), (size.width/2), (size.height/2)));
    //CGContextClosePath(ctx);
    //CGContextDrawPath(ctx, kCGPathFillStroke);
    //CGContextSetTextDrawingMode(ctx, kCGTextFillStroke);
    //self.backgroundColor = [UIColor clearColor];
    //[self setBackgroundColor:[UIColor clearColor]];
    [self.text drawInRect:self.bounds withFont:TINY_CHALKDUSTER lineBreakMode:self.lineBreakMode alignment:UITextAlignmentCenter];
    - (void)dealloc {
    [super dealloc];
    @end
    As you can see I have a couple of things commented out. LOL I still cant figure out how to make the background color clear. I also dont know if I need the dealloc in this subclass. But the other properties seem to be working like the font and line color.
    Thanks again for the link and getting me in the right direction xnav. If you can lend any more assistance on how to get that darn background color clear I would appreciate it!

  • Help with text formatting in Stickies

    I just discovered the Stickies app and it's almost perfect for helping me keep track of my tasks and to-dos. However, I'm slightly obsessive on minor details so I have a few questions:
    Is it possible to center the text without having to paste from another source? I've set the style the way I want it in Word and then paste it into a new note where it looks perfect. Large bold centered text. I go to Note > Use as Default but the text alignment isn't saved. I saved the style as a favorite but have to drill down the styles dialogs just to center text. I'll be creating an deleting a lot of these during the day and it's actually easier for me to read these when the text is centered.
    Same as 1 but for line-spacing. When I try to set the default with 1.5x line spacing new notes are created in 12pt Time New Roman
    Is there a way to set it so that Command+Shift+Y always does a Paste and Match Style? My current workaround is to select all and then paste style to set them as the default font.
    Thanks!

    I had the same problem with CP7 and just upgraded to CP8.01. This version seemed to format my long answers almost perfectly when I imported the first two question pools - then it reverted back to the same old CP7 behavior. This makes me think that there must be a way to do this.
    Update: Here's the workaround that I've used to get these "long questions" and "long answers" to fit into the multiple question Master Slide. I copied then duplicated the "MCQ, T/F, FIB, Sequence" Master Question slide. On the new one, I expanded the Question area box, both horizontally and vertically so it will accommodate even very lengthy questions.
    I then did the same for the answers area - I have to adjust both so they didn't overlap - and I reduced the size of my "Review Area" since I won't be needing it in my exam format. After saving my project, I then imported a new question pool that was in GIFT format. Of course all of them are imported using the original "MCQ, T/F, FIB, Sequence" Master Question slide format. But now I can view my "Question Pool"  (Windows > Question Pool), then select all of them (Control, A) then in the "Properties" tab you should have a pull down that allows you to select the new question master slide you just created. Select it and all of your imported slides now should display properly.
    Note that this seems to work only when your answers can fit on two lines - not three lines or more. But if you've stretched wide the answer area box in you master slide this will work for most long answers.

  • F4 Help with text table in WD abap

    Hi,
    i am using country related input help with check table T005 in one of table and i want to display the country text along with country id in my table, f4 for country is coming however if i select country from f4 it showing country id in the input field of table.
    i want to have country text also in one of my input fields in the table, i have seen f4 help works if we have explicit search help and using parameter assignment we can have id and text defaulted if we use same context for id and text fields,  however in this case country table t005 has check table t005 where texts are stored in text table t005t so web dynpro abap is't picking up the texts??
    please suggest how can i get the texts as soon as i select country in the f4??

    Hi Kranthi,
    You merely have to have an internal table storing list of countries, which you only need to do once, e.g. on load of application (method WDDOINIT of COMPONENTCONTROLLER). In your view, you have to declare a method for event onEnter of the input field, but this method doesn't have to have any code. Your code will be in method WDDOBEFOREACTION, where you read get country name from country key. Once you've got country name, transfer value to a context attribute to which you've already mapped as a source for attribute value of the UI element.
    Check out SAP Webdynpro component FITV_IMG_DEFHTLCATA -> view V_ITEM.

  • Help with Validation Problem Please

    I don't understand this validation and don't know how to fix it. I have checked my other websites and they seem fine. I don't think I have done anything different The link for the website ishttp://www.greenpatchwebsites.com/pow/index.html
    and the validator is http://validator.w3.org/check?uri=www.greenpatchwebsites.com%2Fpow%2Findex.html&charset=%2 8detect+automatically%29&doctype=Inline&group=0
    Please can you help.
    Thank you very much in advance.

    Thanks for that. I have tried it on a new page: http://www.greenpatchwebsites.com/pow/newtest.html and here is the validator :
    http://validator.w3.org/check?uri=www.greenpatchwebsites.com%2Fpow%2Fnewtest.html&charset= %28detect+automatically%29&doctype=Inline&group=0&No200=1- unfortunately loads of errors
    I also tried the recommended template:
    Use the following markup as a template to create a new XHTML 1.0 document using a proper DOCTYPE. See the list below if you wish to use another document type.
    <?xml version="1.0" encoding="utf-8"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
            "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
         <title>An XHTML 1.0 Strict standard template</title>
         <meta http-equiv="content-type"
              content="text/html;charset=utf-8" />
         <meta http-equiv="Content-Style-Type" content="text/css" />
    </head>
    <body>
         <p>… Your HTML content here …</p>
    </body>
    </html>
    but was getting errors with that. As you can tell, I need serious help with this. Which doc type should I be using
    and why doesn't Dreamweaver just do it for you when you select one?
    Thanks very much again in advance.

  • Help with Required fields-PLEASE

    I have been attempting to get help with a required field and one of the forum helpers said he got it to work for me but I cannot and I have not been able to get any more responses from him to help me further.
    I am attempting to have a radio box when the YES is selected to require another field to be completed.  The script I was provided with is:
    getField("Location").required = (getField("Group1").value == "Yes");
    Location being the field that I require to be filled in if Group 1 is Yes.  The previous forum helper indicated that I had to have this script in both fields in Group 1 and when I do that, nothing different happens. 
    What am I doing wrong? 
    Please, I need to fix this right away and I will be using this java script on many other forms that I have so I need to get this done soon.
    Thank you in advance.

    Wht you want can get somewhat complicated. One way to prevent subsequent fields from being used is to set them to read-only and/or hidden. You could then use the Validate event of the text field to validate the entry and enable the subsequent fields if it is filled-in adequately. In general, you should also reset the fields whenever you hide them, so they don't contain potentially invalid data from previously being filled-in. So you could initially have the fields set to be hidden, and only unhide them if No is selected, or if Yes is selected and the required text field is filled-in.
    I realize this may not be as helpful as you had hoped for, but I can't suggest specific code without knowing more about the form.

  • I would need help with the following please: I need to save some of my email on a disk. I was going to Print, then Save PDF but then I am stuck. Help please. Thanks. Elisabeth

    I would need help with saving some eamil messages to a disk to unclutter my email. How can I do this please?
    Thanks.
    Elisabeth

    Open the email and then from the File menu select Save As Rich Text Format. That'll save it to open in TextEdit. If you want a pdf then open the email and do command-p (Print) and then from the PDF drop down box lower left corner select Save as PDF.

  • SSRS- Span tag with text-align CSS property

    Hi All,
    I hope you can direct me.
    If I use the text box as HTML - Interpret HTML tags as styles, and write the following in it:
    "<p style='text-align: right';>Ghada Naim</p>"
    It works correctly ,but the following do not respond to the style:
    "<span style='text-align: right';>Ghada Naim</span>"
    Please, what is the problem? Is the span tag with  SSRS does not support to text align property or what?
    Thank you,

    Hi GhadaNaim,
    In Reporting Services, the following is a complete list of tags that will render as HTML when defined as placeholder text:
    Hyperlinks: <A HREF>
    Fonts: <FONT>
    Header, style and block elements: <H{n}>, <DIV>, <SPAN>,<P>, <DIV>, <LI>, <HN>
    Text format: <B>, <I>, <U>, <S>
    List handling: <OL>, <UL>, <LI>
    We can know that the <SPAN> tag is supported. Based on my further research, the <span> tag is used to group inline-elements in a document and it provides no visual change by itself. So we couldn’t directly see its respond in report.
    For more information about HTML <span> Tag, please refer to the following document:
    http://www.w3schools.com/tags/tag_span.asp
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong 
    Katherine Xiong
    TechNet Community Support

  • Help with photo albums Please

    Hi, i really need some help with my pictures, I've only got a very basic understanding of how my phone works and have somehow put a load of albums on my phone when i plugged it into the computer-I want to delete some of them off the phone but cannot work out how to do it, when i plug my phone in i can find the photo tab but cannot actually see the pictures and can't see any delete button!!! Please can someone help me, basic explanations would be gratefully recieved xxxx

    The photo sync is one way: computer to phone. To remove photos, synced to your phone, remove the check marks next to the albums/folders under the photos tab in itunes & hit the apply/sync button. They will be removed from your phone. You cannot delete photos that were synced to your phone, directly on your phone. The easiest way to manage photos synced to your phone is to create albums or folders on your computer. Move whatever photos you want on your phone into these albums/folders & then select them under the photos tab in itunes to sync to your phone. You can then remove or add photos to these various albums/folders on your computer & the itunes sync process will update your phone every time you sync.

  • Help with Keynote AppleScript, please

    Hi,
    I would like to make a Keynote 3 slideshow from a few pictures (Keynote has nicer transitions than iPhoto). I saw that there is an AppleScript command that should do that:
    make image slides v : Make a series of slides from a list of image paths. Returns a list of paths from which new slides could not be made.
    make image slides reference : the object for the command
    paths Unicode text
    [master master slide]
    [set titles boolean]
    Can someone show me how I would actually do that? E.g. with my pictures at /Users/andi/Pictures/ ?
    That would be very nice! Thanks!
    iBook G4 12"   Mac OS X (10.4.4)   1.25 GB RAM

    Ah, thanks a lot! Your remark about cropping got me on the right idea.
    So now I have found a solution with Automator. Please be tolerant with the exact titles of the Actions as I write this on a german system and try to translate:
    1. Keynote Actions > New Keynote Presentation (with e.g. Theme "Black", Size 1024 x 768 pixels)
    2. iPhoto Actions > Ask for Photos (Note: You have to select some Photos and not just an Album)
    3. Finder Actions > Copy Finder Objects (e.g. to "Pictures")
    And now here comes the tricky part: I used the Photoshop CS2 Actions that can be found here: http://www.completedigitalphotography.com/index.php?p=389 to scale the images to 1024 x 768.
    4. Photoshop CS2 Actions > Fit Image (Width: 1024, Height 768, DON'T check the box named "Save and close")
    5. Photoshop CS2 Actions > Save as JPEG (Use the settings you like as long as you check the boxes "Close after saving" and "Pass saved files instead of originals")
    6. Keynote Actions > Create Slide with Picture (Don't check "Set Titles")
    That's all. Save it as a Programm or whatever you like. It asks you for Photos, corrects width and height to fit into the Keynote slide and puts everything in Keynote. You just have to select all the slides in Keynote and apply one of the gorgeous new transitions (like Reflections, my favourite!) to it and you're done.
    Please correct me if a translation wasn't correct (and I bet some were).
    iBook G4 12"   Mac OS X (10.4.4)   1.25 GB RAM

  • Help with Option 3 please

    A week ago I was on Option 1 but due to heavy use my speed was reduced to 15.7k/sec !.I was advised to upgrade to Option 3 which I promptly did and that was done on the 29th(last week).
    My speed though is still 15k/sec and I cannot watch any streaming video or BBC News Channels etc
    Would some kind gentleman please look into it for me and advise.......thankyou
    Solved!
    Go to Solution.

    Hi Pete,
    I am sorry for the delay in getting back to you.  I picked your email up this morning and have dropped you a reply.  I am pleased that you managed to sort this out, if you need any further help just let me know.
    Cheers
    Sean
    BTCare Community Manager
    If we have asked you to email us with your details, please make sure you are logged in to the forum, otherwise you will not be able to see our ‘Contact Us’ link within our profiles.
    We are sorry that we are unable to deal with service/account queries via the private message(PM) function so please don't PM your account info, we need to deal with this via our email account :-)

  • Help with button code please?

    I am a novice and have just completed my first animated movie. I need help with action script.
    The movie is currently looped and I have created and invisible button the size of the frame with the intention that a user can click on the movie image to stop it and on second click continue the movie from where it stopped.
    I have used the AS event handler method to stop the movie. I have tested it and it works. But I cannot figure suitable code to restart the movie.
    Two questions;
    1. am I going about the task the right way? (should I use two buttons, one stop, one start)?
    2. if my approach is feasible, can anyone give me the correct AS to re-start the movie and put me out of my misery please?

    you can use the following after changing "yourbutton" and "yourmovieclip" to use suitable instance names:
    yourbutton.onRelease=function(){
    if(!this.toggle){
    yourmovieclip.stop();
    } else {
    yourmovieclip.play();
    this.toggle=!this.toggle;

Maybe you are looking for

  • I cannot access AOL webmail after upgrading to Firefox 3.6.15

    When trying to access AOL Webmail, I get "Bad Request - Invalid Verb HTTP Error 400. The request verb is invalid."

  • My product key in Windows 8.1 doesn't work

    This is the email that I sent to Amazon, whom I purchased the program from. I have yet to hear from them. I plan on writing to them again to make sure they actually got the email. If Adobe could help, that would be awesome, but I'm going to cover all

  • Oh crap, did I just make my life a lot harder?

    Dear All, I was moving photo's from one small external drive to larger external drive using the Finder on my i-mac. Afte they came over I thought I'd do the right thing and rename my folders so they'd be more descriptive. The I start lightroom 2.6 an

  • Quick check on SAP Lumira

    Hi, I am quite new and in Lumira. Last 5-6 month i have create some report and graph etc using lumira. What i have done is i have download it into my laptop and work on it. I connect to universe,database using sybase iq jdbc connectivity to create re

  • IPhoto 8.1

    After upgrading to 8.1, I am facing massive stability problems and functions that don't work any more. While going through 200 freshly downloaded photos applying the required rotations, iPhoto crashed three times and upon restart told me that my libr