text with link in the table

Hello

I built a page with a table, in each cell of the table is an image, a link and a text:

< td > < img src = "images/reddot.gif" width = "15" height = "15" / > < a href = "contrib1.html" / > < table > contributor "

the text font and size seem ok, but when I added the link it has changed color and become stressed.

I think it has to do with the fact there is a link, but I don't want it to happen (stamp feet scream, make a cup of tea) how do the text stay plain and black and change when you click light gray?

any help appreciated here is the bit of css are:

table {}

overflow: hidden;

padding: 1px;

do-color: #000;

margin-left: auto;

margin-right: auto;

width: 90%;

are-size: 30px;

text-align: center;

}

Andrew

You need style your links with CSS.  Add this to your external style sheet, and change colors according to your needs:

a {text-decoration:none}
a:link {color: #FF0000;}   /* unvisited link */
a:visited {color: #00FF00} /* visited link */
a:hover {color: #FF00FF}   /* mouse over link */
a:active {color: #0000FF}  /* selected link */

More on CSS Pseudo-classes:

http://www.w3schools.com/CSS/css_pseudo_classes.asp

Nancy O.
ALT-Web Design & Publishing
Web | Graphics | Print | Media specialists
www.Alt-Web.com/
www.Twitter.com/ALTWEB

Tags: Dreamweaver

Similar Questions

  • How to align the text with fields of the table values

    Hi friends

    My Baisc requirement is to display some values of address with some raising in boxes at the same level as the half left of the page displays address and other half right side of the page displays the values in the boxes, but when I created a table to display the value in boxes, he does not insert text of the Ant at the same level on half of the page as my requirement is

    My requirement is

    AddressAddressAddressAddress val in a val in a box2 box1 / / I m not able to display any square here box
    AddressAddressAddressAddress val in a box3 val in a box of 4
    AddressAddressAddressAddress val in a val in a box6 box5
    AddressAddressAddressAddress val in a val in a box8 box7

    but it comes as

    Val in a val in a box2 box1 / / I m not able to display any square here box
    Val in a box3 val in a box of 4
    Val in a val in a box6 box5
    Val in a val in a box8 box7
    AddressAddressAddressAddress
    AddressAddressAddressAddress
    AddressAddressAddressAddress
    AddressAddressAddressAddress

    and that's my problem I do not know how to align bot at the same level, any advice would be very help full

    Thanks in advance

    Thank you
    Pratap

    You can send me your sample xml and RTF, it would be better that I can see the RTf.

  • Text disappears by updating the table of contents

    I work with documents several pages that have been created by someone else in CS3 and then I convert it into CS5. Several times when I tried to update the table of contents, all text in the document disappears. All the objects to hold their positions and nothing else changes except that there is no visible text. I checked the table of contents style settings and can find no difference between a document that updates correctly and which don't. Around her, the only way is to copy and paste the content into a new document. This does not happen with all documents, only about 30%.

    Text disappearing when you update a table of contents is usually a symtom of havint put the table of contents in the main story line. The table of contents must be in a separate story, no wire to anything, because the update replaces the whole story.

  • Best or easiest to load texts with link?

    I was contemplating the way better or easier to create three texts with links a website. A method creates a static text in design view and display only static text with a hyperlink or by creating all these programmatically in loading external text and adding the link in the code.

    I thought that to be more flexible and mobile, create the link Hypertext of some texts by program is better, but I don't know where to start on this. I know how to load external text now but I don't know how to add hyperlinks.

    Any suggestion is appreciated.

    the defaultTextFormat is a property, is not a method.   Instead of:

       myTxtField.defaultTextFormat(txtFormat);
    
    use:
    
       myTxtField.defaultTextFormat = txtFormat;
    
  • Unique problem with selction on the table (Query Page)

    Unique problem with selction on the table (Query Page)

    I have a VO data Bulletin Board, with a transitional attribute for selction unique column.
    My requirement is that I need to identify the line that was selected in the table.

    I associated with fireAction singleSelection column, such that whenever the user selects the line
    I'm looking for that VO using some rowIterator.
    But when running the loop of the transient VO that is mapped to the singleSelection variable is the show as "n" / NUll
    for all the lines...

    So how do you identify the selected line in singleSelection to a table.

    -Sasi

    In the property inspector of the element for which you've put firePartialAction, you can find a property named "parameters". That mention primary key as your setting.

    You can get the arameter using pageContext.getparameter ();

    -Anand

  • ADF: How to convert column ADF output text to link to the item in the table?

    Hello world

    I use Jdev 11 G.

    I dragged VO as adf read only the table that is to have 10 columns.
    now my requirement is to convert the first column "empid" to link the item.
    How can I convert this column as a link?

    and one more thing by clicking on this link, we should sail to OAF page from empid as parameter.
    How can I achieve this?

    Any answer will be really useful.

    Thank you.

    In my opinion, using af: goLink is the right option when you call a page of the outsider.
    you do not download workspace sample & test it provided link?
    You can select yr af:commandLink in the Structure window & do a right click to select "create a binding of the action method.
    In the open dialog box you can choose the "connection method" & then name the bean with the same method name generated by the IDE.

  • Update with no link between the tables

    Hi all
    Let us, considering what follows in 11g:
    SQL> create table t1 (col1 number , col2 number);
     
    Table created
     
    SQL> create table t2 (col1 number, col2 number);
     
    Table created
     
    SQL> insert into t1 values(1,2);
     
    1 row inserted
     
    SQL> insert into t1 values(2,3);
     
    1 row inserted
     
    SQL> insert into t1 values(3,4);
     
    1 row inserted
     
    SQL> insert into t2 values(5,6);
     
    1 row inserted
     
    SQL> insert into t2 values(7,8);
     
    1 row inserted
     
    SQL> insert into t2 values(9,10);
     
    1 row inserted
     
    SQL> commit;
     
    Commit complete
    How can I update the table T2 col1 - column - with values of column in table T1 - col2? No order no required - just the values :)
    Maybe it's simple, but I can't get there...

    Thanks in advance,
    Alexander.
    select *
    from t1;
    
    COL1 COL2
    ---- ----
       1    2
       2    3
       3    4 
    
    select *
    from t2;
    
    COL1 COL2
    ---- ----
       5    6
       7    8
       9   10 
    
    merge into t2
    using (
     select *
     from ( select rowid rid,row_number() over(order by null) rn1
              from t2
            ) a,
           (
             select t1.*,row_number() over(order by null) rn2
             from t1
           ) b
     where a.rn1 = b.rn2
          )   x
    on (t2.rowid = x.rid)
    when matched then update set t2.col1 = x.col2;
    
    3 rows merged.
    
    select *
    from t2;
    
    COL1 COL2
    ---- ----
       2    6
       3    8
       4   10 
    

    Published by: JAC on November 5, 2012 18:36
    Amended or the requirement

  • How to add a link to the tables

    Hello

    If all goes well, there is a simple answer to this question - I had this long table that I created and I separated it until the broadcast on several pages, which links the tables so that the information in the table would pass. -a worked very well!

    I have recently moved these paintings in a new document and now I have these linked tables, I have those individual. I tried to re - bind all text fields, but just, pushes the table down and place the information on it in the form of text, it does not place new information into the table cells as it used to.

    Is it possible to re - linking tables if they are in the same way as they did before?

    Go back to your original document and rather than copy the text boxes, place the text cursor in the first box, and then select all.

    Then paste it into a text box in the new document.

    The copy of the individual images of a related story breaks the links.

  • Layer of Source text a link to the external text. (no code in doc!)

    I saw a link to text with snippets of code inside documents.

    This means that the external text document must contain pieces of scripts.

    I would like to make a link to txt (or csv) documents that contain no code.

    Total noob users must be able to link a text of an After Effects project.

    I have a Web site data receiver Exporting CSV values.

    It would be ideal that After Effects can hoover the text and put some pieces in some source texts.

    We are talking about here auto sports cards.

    Is this possible without adding code to a text dump?

    Or is it simply impossible?

    I solved it by using Expressions.

    In the JavaScript reference Guide, there are a lot of usage of the word VAR as the first word in a line of code.

    Seems to be what does not include AE.

    When I program without it, many commands work fine.

    Damage data Web site continues to change its structure.

    Him copy / paste / expression method worked fine for a day and then I went to the square.

  • How to move text with styles between the docs? [CS 5.5 + JS]

    Here's what I have to get a document & insertion point reference:

      if (! app.selection[0] instanceof InsertionPoint) {
         alert("Your cursor must be a single insertion point! Try again.", "Insert single Word file");
          return;
     }
     var currDoc = app.documents[0];
     var importHere = currDoc.selection[0]
    

    I have the systematic Cleanup job, can enter the text cleaned with

     cleanupFrame.paragraphs.itemByRange(startFrame.paragraphs[0], startFrame.paragraphs[-1]).select();
     app.copy();
    
    

    But then, what? It should be simple enough to be invisible for me. I tried different things, but I have to need a boost.

    TIA.

    Use the Move() methods

    Moving text (to: LocationOptions[, reference: varies])

    Moves the text at the specified location.

    Parameter Type Description
    TO LocationOptions:
    LocationOptions.BEFORE
    LocationOptions.AFTER
    LocationOptions.AT_END
    LocationOptions.AT_BEGINNING
    LocationOptions.UNKNOWN
    The location relative to the object within the container object or reference.
    Reference Cell
    Column
    PageItem
    Line
    History
    Table
    Text
    The reference object. Note: Required when the parameter specifies before or after. Can accept: text, history, cell, row, column, Table or PageItem. (Optional)
  • Add icon w/link to the table of the Spry data set

    I placed an icon inside a table data cell, then tried to give him a hyperlink to a clip. However, the link appeared as underlined text in the cell of the table under the icon.

    Then I tried to type the HTML code in code view, and this is what it looked like. It also did not work the display page:

    "< td align ="center"> < img src =" graphics/speaker.jpg"width ="29"height ="30"/ > < img src =" graphics/movie.jpg "a href="graphics/melanoma1.wmv"/ > < table >

    How I would make the icon itself launch the WMV clip?

    Thank you!

    How I would make the icon itself launch the WMV clip?

    By using the appropriate syntax.

    
    

    If you do not border link Hypertext for image links, add this to your CSS:

    an img {border: none ;}}

    --
    Mark A. Boyd
    Keep-on-Learnine :-)

  • How to convert the string with numbers in the table of Boolean 2D

    Hello

    I have input a string with comma separated numbers 1,192 (starting at 1).

    This string must be converted to a table 2D-boolean. Each number that appears should be true, not true rest.

    The 2D table consists of 4 times of 0.47 Boolean values.

    1.48--> [0.47] numbers [0]
    49.96--> [0.47] numbers [1]
    Numbers 97.144--> [0.47] [2]
    145.192--> [0.47] numbers [3]

    If a '1, 49, 97 145' input string put all [0] [0.3] true.

    How can it be easy/fast resolved?

    Thanks for help

    Break the string of numbers in a table of numbers.  (Spreasheet String to Array).

    In a loop For, index with each issue of this table.  Use in the range and Coerce to see if it is in the range of numbers.  (You can put this in a loop For as auto good indexing through the ranges).  If it's in the range, then use subset replace table to activate the corresponding item in a real.  If this is not the case, do nothing.  Maintain the table of Boolean in a shift register.

    Repeat this step for each number in your table.

    (What is a class assignment?)

  • text box linking to the previous used document

    For some reason when I click on a text box, it opens the previous indesign file that I saved for the current file I'm working on. It pops up in front of the file I'm working on which is very annoying! There is a new feature that creates a link to previous files, that you saved?

    You have a hyperlink in there to the old file?

  • Problem with trigger on the table

    Hello

    I have the table TEMP AS (NUMBER of SNO
    STATE VARCHAR2 (50).
    DATE OF UPDATE_DATE)

    I want to create the trigger on this table as each time that it is updated in the STATE of temporary table UPDATE_DATE updated columns.
    I am creating the trigger using the PRAGMA autonomous transaction, but it does not work with that and withouht PRAGMA.
    With PRAGMA I get the error message ' ORA-00060: Deadlock detected while you wait resource. "

    Is it possible to create triggers on this table to update columns in the same table.

    Published by: user6040008 on December 11, 2012 01:08

    Hello
    This is not a valid forum for questions like that. Thank you for using {forum: id = 75} forum. However, you can use following code:

    
    create or replace trigger xx
    before update of state
    on cabasys.temp
    for each row
    begin
    :new.update_date := sysdate;
    end; 
    

    Published by: kikolus on 2012-12-11 10:40

  • No results displayed when you click on the following link in the table of the OFA

    Hi all

    We created a table OAF in the new Page of the OFA.
    It works very well. But he has a problem.
    If the records are more than 10 then the following link is displayed automatically.
    And when you click on the link next to the table of the OFA, no record displayed.
    It is very urgent. Any help will be much appreciated.

    Thank you

    1. you don't need to identify the event click on 'next', because you don't need to do any action on this.

    2. you call the AM method to run the query on the events of "SearchGoButton" and "SearchClearButton".
    Here's the code you need to write:

    If ("SearchGoButton".equals (s))
    {
    pPersonId = temp.toString ();
    Aserializable serializable [] = {pPersonId};

    Class aclass [] = {String.class};

    pageContext.getApplicationModule (webBean) .invokeMethod ("ExecuteDailyAttendanceVO", aserializable, aclass);
    }
    ElseIf ("SearchClearButton".equals (s))
    {
    pPersonId = "-1";
    Aserializable serializable [] = {pPersonId};

    Class aclass [] = {String.class};

    pageContext.getApplicationModule (webBean) .invokeMethod ("ExecuteDailyAttendanceVO", aserializable, aclass);
    }

    -Prince
    [email protected]
    http://princekapoor82.blogspot.com

Maybe you are looking for

  • Question on size USB for upgrade to blu - ray player

    HelloI have a question: if I want to move (for example bdx2300) Toshiba blu - ray player, the Toshiba site says (instructions for the installation of the upgrade in the guide 'how to upgrade the F/W'): "Firmware update requires USB Reader of maximum

  • Hi, how can I get a picture of 492kb to be just 100 KB? Q thanks

    Hi, how can I get a picture of 492kb to be just 100 KB? Q thanks

  • How to connect my computer to bluetooth LG Soundbar speaker?

    Original title: connect my xp sp3 to bluetooth soundbar. How to connect my computer to my LG Soundbar speaker bluetooth.  My computer is AMD Athlon (tm) 64 x 2 Dual Core Processor 3800 + 2.01 GHz - it's an Acer... It is running on XP Media Center Edi

  • Cannot connect wirelessy

    Try as I might I cannot print from my laptop on my HP PSC 1410 all in one printer without a USB connection. I am trying to connect wireless. History: I ran this facility for years when I was running Windows SP. I've updated my Pc and laptop for windo

  • JavaScript message popping up and boring

    I get a message that says Application Javascript and uninstal set. How can I stop this to come on my screen? He won't let me do anything.