How can I have two different styles of hyperlink text on one page?

Hi
I'm using an external css document to control the look of my site, and would like to have two differnet types of hyperlink.
One for within the content text, which would be the same size and style as the content text, and one that is BIGGER and BOLDER for 'title' hyperlinks.
At the minute I have one set up for the content text, which is:
a:link {
color: #0000CC;
text-decoration: none;
a:visited {
text-decoration: none;
color: #666666;
a:hover {
text-decoration: underline;
color: #0000CC;
a:active {
text-decoration: none;
color: #666666;
How can I set another style up for the title links without affecting the look of the content links??

Pseudo-classes & Descendant selectors is what you're after...
From your example, I would leave those styles for your standard links and would create new rules for the content area and then follow similar for your 'titles' or you could use Headings <h1> are they are actually headings that you want styled.
The following is assuming that you have used a Div or a container with an ID of mainContent.
#mainContent a:link {
     text-decoration: underline;
     color: #66CC99;
#mainContent a:visited {
     text-decoration: underline;
     color: #66CC99;
#mainContent a:hover {
     text-decoration: none;
     color: #333333;
     background-color: #FFFFFF;
#mainContent a:active {
     text-decoration: underline;
     color: #66CC99;
For another area of the page, say a left sidebar and gave it an ID of #leftcolumn 
(I've used the same styles for easier copying pasting, but naturally, you would style then differently)
#leftcolumn a:link {
     text-decoration: underline;
     color: #66CC99;
#leftcolumn a:visited {
     text-decoration: underline;
     color: #66CC99;
#leftcolumn a:hover {
     text-decoration: none;
     color: #333333;
     background-color: #FFFFFF;
#leftcolumn a:active {
     text-decoration: underline;
     color: #66CC99;

Similar Messages

  • Can you please help me by saying me how can i join two different picture to make it as one picture.??

    Hi Sir/ Madam,
       My name is Rishav and I am facing some problem with my Photoshop CC. Actually I have a question. If you guys could help me out i will be very obliged. The quest in "Can you please help me by saying me how can i join two different picture to make it as one picture.??"

    Maybe you should post over at
    Photoshop for Beginners
    or start with the "Get Started" section of the Help:
    Photoshop Help | Photoshop Help
    And your question
    Can you please help me by saying me how can i join two different picture to make it as one picture.??
    does not seem particularly specific – do you want to simply combine two images as they are, do you want to clip elements from the one and insert them into the other, …?
    Could you post (lores of) the images and explain what you intend to achieve?

  • How can we have two different Itunes libraries on one computer?

    How can we have two Itunes accounts on one computer?  I found info on the itunes help page but I do not know how to follow the steps given because I am not prompted with what it says I should be prompted with? Please help I don't want to delete one of our libraries

    Launch iTunes with the Shift key held down as needed, or use different Windows XP user accounts.
    (74282)

  • How can you have two link styles on one page?

    I have one style (formatted link style) for internal links in
    my footer but I want a different style for the external links in my
    mainContent. Is it possible to have two different "styles" of links
    on one page? I tried creating a new set for the mainContent links
    and being positioned underneath my footer link's styles, the "new"
    mainContent link styles overrode the footer link style. Is there
    another way of going about this?
    Thanks anyone, Julie

    Julie:
    > I'm just not code savvy.
    As long as you permit yourself to offer this argument, you
    will struggle
    with Dreamweaver. If you are serious and want to improve, you
    will have to
    overcome your code-phobia.
    What is in these two files?
    > <link href="css/area.css" rel="stylesheet"
    type="text/css" />
    > <link href="css/footlinks.css" rel="stylesheet"
    type="text/css"
    > media="screen"
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Rock Artist" <[email protected]> wrote in
    message
    news:[email protected]...
    > Murray, I was just looking over my code and noticed the
    links in my footer
    > are
    > styled, in the first place, by a class I created in my
    main.css (for all
    > of my
    > pages) called ".webdis" (nickname for webmaster and
    disclaimer). I do see
    > my
    > link format style in the head of this document but am I
    supposed to see it
    > where the footer is (in the code)?
    >
    > If you look at the first external link (the only one I
    have attached a
    > link to
    > so far):
    > </p>
    > <p class="contentlinx"><a href="
    http://www.hotsprings.org/">Hot
    > Springs
    > Convention &amp; Visitor's Bureau</a><br
    />
    >
    http://www.hotsprings.org/<br
    />
    > </p>
    >
    > It took on same style as my footer links. I'm a little
    frustrated, it just
    > seems like it should be so simple. I'm ready to launch
    this thing tonight
    > and
    > this is the only "little" thing I have left to do. I
    hate to cheat and
    > make
    > each one of these site links a graphic and link it as a
    graphic, but I am
    > so
    > ready to get this thing up.
    >
    > I'm just not code savvy. I am going to attach my code to
    this reply and
    > maybe
    > you can tell me what I'm doing wrong. Thanks, Julie
    >
    >
    >
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=UTF-8" />
    > <title>Area Interests</title>
    >
    > <link href="css/main.css" rel="stylesheet"
    type="text/css" />
    > <style type="text/css">
    > <!--
    > .contentlinx {
    > font-family: Arial, Helvetica, sans-serif;
    > font-size: 14px;
    > color: #336600;
    > }
    > -->
    > </style>
    > <link href="css/area.css" rel="stylesheet"
    type="text/css" />
    > <link href="css/footlinks.css" rel="stylesheet"
    type="text/css"
    > media="screen"
    > />
    > </head>
    >
    > <body>
    >  <div id="wrapper">
    > <div id="header"></div>
    > <div id="sidebar">
    > <p align="center"><a
    href="index.html"><img
    > src="images/vert_nav_bar/home_button.jpg"
    alt="navigation button to home"
    > width="155" height="50" /></a><a
    href="property.html"><img
    > src="images/vert_nav_bar/property_button.jpg"
    alt="navigation button for
    > property" width="155" height="50" /></a><a
    href="maps.html"><img
    > src="images/vert_nav_bar/maps_button.jpg"
    alt="navigation button for maps"
    > width="155" height="50" /></a><a
    href="gallery.html"><img
    > src="images/vert_nav_bar/gallery_button.jpg"
    alt="navigation button for
    > photo
    > gallery" width="155" height="75" /></a><a
    href="gallery.html"><img
    > src="images/vert_nav_bar/area_button.jpg"
    alt="navigation button for area
    > interests" width="155" height="75" /></a><a
    href="contact.html"><img
    > src="images/vert_nav_bar/contact_button.jpg"
    alt="navigation button for
    > contact
    > us" width="155" height="75" /></a></p>
    > <div id="sidephoto"><img
    src="images/tree_flower.jpg" alt="garvan tree
    > flower" width="145" height="275" /></div>
    > </div>
    > <div id="header2">
    > <h2 class="style2">AREA INTERESTS</h2>
    > </div>
    > <div class="proptext" id="content">
    > <p>HOT SPRINGS NATIONAL PARK, ARKANSAS</p>
    > <div id="photofeature"><img
    src="images/garvin_stream.jpg" alt="garvan
    > gardens" width="275" height="218" /></div>
    > <p align="left">America's first resort, also
    referred to as &quot;The
    > Spa
    > City&quot;, Hot Springs definitely has a pulse
    > of its own. Visit the sites below to find out why this
    is one of
    > the
    > most popular vacation destinations in the South.
    Featuring world famous
    > natural
    > hot springs, historic bathhouse row, and thoroughbred
    horse racing at
    > Oaklawn
    > Park. The perfect place to relax, the perfect place for
    adventure, Hot
    > Springs
    > provides a year-round opportunity for outdoor
    recreation, world-class bass
    > fishing and fabulous water sport activities, hiking,
    horseback riding and
    > quartz crystal hunting. In fact, take a day trip to
    Murfreesboro to the
    > Crater
    > of Diamonds State Park, the only diamond-producing site
    in the world that
    > is
    > open to the public and try your hand at diamond hunting
    or searching for
    > 40
    > other types of semi-precious stones, rocks and minerals.
    Garvan Woodland
    > Gardens, a 210 acre forested peninsula jutting into Lake
    Hamilton with a
    > showcase of floral landscapes, streams and waterfalls,
    is a &quot;must
    > see&quot;. Hot Springs has a strong art community as
    well. Enjoy artist's
    > galleries, film-making events and musical venues all
    over town. Did I
    > mention
    > historical architecture? There is too much to mention
    here about this
    > wonderful
    > city, please see for yourself by visiting the local
    sites below to see
    > what's
    > happening in and around town.<br />
    > </p>
    > <p class="contentlinx"><a href="
    http://www.hotsprings.org/">Hot
    > Springs
    > Convention &amp; Visitor's Bureau</a><br
    />
    >
    http://www.hotsprings.org/<br
    />
    > </p>
    > <p class="contentlinx">Facts About Hot
    Springs<br />
    >
    http://www.hotsprings.org/media_room/news-detail.asp?news_id=9</p>
    > <p class="contentlinx">City of Hot Springs<br
    />
    >
    http://cityhs.net/</p>
    > <p><span class="contentlinx">The Greater Hot
    Springs Chamber of
    > Commerce<br />
    >
    http://www.hotspringschamber.com/</span><br
    />
    > </p>
    > </div>
    > <div id="footer">
    > <p><span
    >
    class="webdis">WEBMASTER     |    &
    > nbsp;<a
    href="disclaimer.html">DISCLAIMER</a></span></p>
    > </div>
    > </div>
    > </body>
    > </html>
    >

  • How can I have two different windows up on one screen at the same time?

    How can I have to different windows open on my screen at one time? Kind of like a split or shared screen.

    If you want this split screen thingy for a single app, do like captfred suggests or see if the app itself supports some sort of splitting, like MS Excel.
    If you want to do this system-wide, maybe you can get what you want by activating and using Spaces: http://support.apple.com/kb/PH4313

  • HT3819 can i have two different apple i d s on one computer without combining them

    Can i have two apple products such as ipad and ipod touch on one computer with differnt apple id s without combining the music of one and the other etc.

    See:
    How to use multiple iPods, iPads, or iPhones with one computer
    What is the best way to manage multiple...: Apple Support Communities

  • Hey, does anybody know how can i have two different apple ids on my mac imessages, because i have two mobile phones with different ids and i would like to be able to send imessages from both accounts on my mac. Tnx

    Hey does anybody know how to set up 2 apple ID on mac imessages? Because i have 2 different iphones and i would like to send imessages fron both accounts on my mac...

    Associate your mobile numbers with your Apple ID, if you haven't already done so.
    Sign out of iMessage on the Mac:
    Messages ▹ Preferences ▹ Accounts ▹ Sign out
    and on the iPhone:
    Settings ▹ Messages ▹ Send & Receive ▹ Apple ID ▹ Sign out
    Then, on the phone, tap
    Use Your Apple ID for iMessage
    Sign back into iMessage on both devices and test. If there's no change, you may have to wait for a change in network conditions.
    Credit for this solution to ASC member SmittyLove and to Glenn Fleishman of tidbits.com.

  • How can I have two different Time Machine backups in Lion?

    I would like to have two separate external hard drive Time Machine backups of the same computer.  One to keep at home and one to take to work as a safety net.  Is this possible in Lion?  And if so, how do I do it?
    I currently have an older EHD with my back up data on it, and a newer one that I have been backing up to for the past couple of weeks.  When I hook up the older EHD, Time Machine does not recognize the old backup data (ie. oldest backup and latest backup say "None").

    Hey mrssqueegy,
    Thanks for the question. The feature you are searching for was introduced with OS X Mountain Lion. If your computer is compatible, I would definitely recommend upgrading to take advantage of this great feature:
    Mac Basics: Time Machine backs up your Mac
    http://support.apple.com/kb/ht1427
    OS X Mountain Lion and later let you:
    - Encrypt AirPort Time Capsule backups and network backup.
    - Select multiple backup destinations that Time Machine will rotate through for backup cycles.
    - Complete backups when the Mac is in Power Nap (on compatible Macs).
    Thanks,
    Matt M.

  • Can I have two different actions (Show and Hide) on one Btn? Captivate 6

    Hi Everybody
      I currently need to fix a Captivate project,  there is one thing that I don't know how to do. So, I have this button, I am supposed to click this Btn, then the image disapper and text show up. So, there are two actions for this Btn. Once I click it, 1st action: the images disapper, second action: text show up.  I am only able to make one action work.
    Does anyone here know how to do it?
    Thanks.

    I have been blogging a lot about toggle buttons. Have a look at:
    http://lilybiri.posterous.com/toggle-shape-buttons    for Captivate 6, it has also a link to an older blog post.
    I presented a webinar, focusing only on shape buttons, where the toggle is also explained:
    http://blogs.adobe.com/captivate/2012/09/training-lilybiris-favourite-shapes-to-trigger-ad vanced-actions.html
    As Rod points out, you cannot convert a standard to a conditional advanced action, but for complicated Conditional actions, I will often first test the sequence of statements in a standard action, before copying it to the THEN or ELSE part of the conditional action. But this is not really a very complicated condtional action that is needed. I even explained it recently in another thread, but cannot find it for the moment.
    Lilybiri

  • HT1386 How can I have two seperate sets of Playlists for two different iPods on one computer?

    How can I have two seperate sets of Playlists for two different iPods, on the same PC?

    Open itunes.
    Make whatever playlists you each like.
    Connect one ipod, select only what you want, sync
    Do the same for the other ipod

  • HT204053 How can I sync two different email accounts?

    How can I sync two different email accounts? All of this Mobile Me and cloud stuff got me all flustered and now I have two accounts possibly 3.

    How to use multiple iPods, iPads, or iPhones with one computer

  • How Can i Use two Different Public IP Addresses no my DMZ with ASA Firewall.

    How To Using Two Different Public IP Address on My DMZ with ASA 5520
    Postado por jorge decimo decimo em 28/Jan/2013 5:51:28
    Hi everyone out there.
    can any one please help me regarding this situation that im looking for a solution
    My old range of public ip address are finished, i mean (the 41.x.x.0 range)
    So now i still need to have in my DMZ another two servers that will bring some new services.
    Remember that those two server, will need to be accessable both from inside and from outside users (Internet users) as well.
    So as i said, my old range of public ip address is finished and we asked the ISP to gives some additional public
    ip address to address the need of the two new servers on DMZ. and the ISP gave us the range of 197.216.1.24/29
    So my quation is, on reall time world (on the equipment) how can i Use two different public ip address on the same DMZ
    on Cisco ASA 5520 v8??
    How my configuration should look like?
    I was told about implementing static nat with Sub Interfaces on both Router and ASA interface
    Can someone please do give me a help with a practical config sample please. i can as well be reached at [email protected]
    attached is my network diagram for a better understanding
    I thank every body in advance
    Jorge

    Hi,
    So looking at your picture you have the original public IP address range configured on the OUTSIDE and its used for NAT for different servers behind the ASA firewall.
    Now you have gotten a new public IP address range from the ISP and want to get it into use.
    How do you want to use this IP address range? You want to configure the public IP addresses directly on the servers or NAT them at the ASA and have private IP addresses on the actual servers (like it seems to be for the current server)?
    To get the routing working naturally the only thing needed between your Router and Firewall would be to have a static route for the new public network range pointing towards your ASA OUTSIDE IP address. The routing between your Router and the ISP core could either be handled with Static Routing or Dynamic Routing.
    So you dont really need to change the interface configuration between the Router and ASA at all. You just need a Static route pointing the new public IP address towards the ASA outside IP address.
    Now when the routing is handled between the ISP - ISP/Your Router - Your Firewall, you can then consider how to use those IP addresses.
    Do you want to use the public IP addresses DIRECTLY on the HOSTS behind the firewall?This would require you to either configure a new physical interface with the new public IP address range OR create a new subinterface with the new public IP addresses range AND then configure the LAN devices correspondingly to the chosen method on the firewall
    Do you want to use the public IP addresses DIRECLTY on the ASA OUTSIDE as NAT IP addresses?This would require for you to only start configuring Static NAT for the new servers between the inside/dmz and outside interface of the ASA. The format would be no different from the previous NAT configuration other than for the different IP addresses ofcourse
    Of the above ways
    The first way is good because the actual hosts will have the public IP addresses. Therefore you wont run into problems with DNS when the LAN users are trying to access the server.
    The second way is the one requiring the least amount of configurations/changes on the ASA. In this case though you might run into problem with DNS (to which I refer above) as the server actually has a private IP address but the public DNS might reply to the LAN hosts with a public IP address and therefore connections from LAN could fail. This is because LAN users cant connect to the servers OUTSIDE NAT IP address (unless you NAT the server to public IP address towards LAN also)
    Hopefully the above was helpfull. Naturally ask more specific questions and I'll answer them. Hopefully I didnt miss something. But please ask more
    I'm currently at Cisco Live! 2013 London so in the "worst case" I might be able to answer on the weekend at earliest.
    - Jouni

  • Can you have two different itunes account on the same computer

    how can you have 2 different itunes accounts on the same computer?

    You would need two seperate users on the computer. Then each library would be independent of each other. Or do you mean two seperate iTunes store accounts?

  • Can we have two different itunes accounts on the same mac?

    Can we have two different itunes accounts on the same account? I am having trouble accessing mine from my sons.

    Yes you can.
    The fact you cannot access your son's library from your User account is intentional. User accounts on your Mac are nearly as separate from each other as your Macs are from anyone else's on the planet. To copy music from his account to yours, first copy it to the Shared folder, then log into your account and import the music. Then, you can erase it from Shared.
    The Shared folder exists at /Users/Shared.
    Read
    iTunes: How to share music between different accounts on a single computer
    OS X Mavericks: Set up users on your Mac

  • TS1591 I just bought a second iPod touch (4th gen), but when I connect the second iPod to my computer it is not recognizing it. How can I have two iPod's set up????

    So I had an iPod touch and everything with it is fine. I just bought a second one for my daughter...exactly the same as my iPod. This second one was bought used, but was reset completely before I plugged it into my computer. My problem is... my iTunes does not recognize the second touch as a device! I can't get it to sync, so I can't get any music or anything onto the device. How can I have two iPod touches on my computer? Is there something special that I have to do to get my computer to recognize this second touch as a different device?? PLEASE HELP!!!  

    - If you are using the same USB port and the same cable and have iTunes version 10.7 or later on the computer there is something wrong with the iPod.
    - Does the second iPod work?
    - Does it charge?
    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.

Maybe you are looking for

  • B&W G3 (350Mhz)

    Hi there, i have a B&W G3 (350Mhz) currently running OS 9.2.2. I have upgraded the RAM to 512MB, intending to upgrade it all the way to 1GB. I then hoped to install a full version of OS Jaguar. I know i need to update firmware to V1.1 which i will do

  • WRT54G as an access point

    Dear Sir, When I can find instructions how to configure the WRT54G as an ordinary access point for wireless equipment (notebooks, etc.) Is it technically possible to work without DHCP but assign my local static network addresses to wireless card devi

  • Display Toolbar error

    Post Author: app CA Forum: .NET When I enable "Display Toolbar"  on the CrystalReportViewer I get an error when I try to display the report on a web page.  The error is "Control 'CrystalReportViewer1_ctl02_ctl01' of type 'ToolbarButton' must be place

  • Initialize Web Service

    Hi, I need to write a web service and I would like to use Java with Axis. Prior to the first request from a client, the web service should initialize itself, for instance establish a database connection and prepare some static objects. How can this b

  • LMS 4.0.1 - Inventory problem with 6500 VSS

    Hello, I have just made a fresh install of LMS 4.0. I installed the 4.0.1 version too. It is done on a Windows 2008 STD running a WM environment. I have only one problem : I cannot get the inventory collection for a 6500 VSS chassis. It is discovered