Advanced search  

News:

cpg1.5.48 Security release - upgrade mandatory!
The Coppermine development team is releasing a security update for Coppermine in order to counter a recently discovered vulnerability. It is important that all users who run version cpg1.5.46 or older update to this latest version as soon as possible.
[more]

Pages: [1]   Go Down

Author Topic: 2 differents text colors for links  (Read 4853 times)

0 Members and 1 Guest are viewing this topic.

mdssdm

  • Coppermine newbie
  • Offline Offline
  • Posts: 11
2 differents text colors for links
« on: April 18, 2006, 06:06:59 pm »

Hi,

I've searched the forum and found something about changing the link color through css, but that's not exactly what I'm looking for.

I'm trying to get two different text-colors for links (e.g. black and white, depending on the background)
Please see the attachment for details

I changed the link-text-color in the style.css:

---snip---

a {color: #FFFFFF; text-decoration: none;}
a:hover {COLOR: #555555; TEXT-DECORATION: none; background-color:#F5E283;}

--- snip ---

Works perfect for the SYS_MENU on a dark background
But on a bright background, I would like to change the link-text-color to black (for the SUB_MENU)

Before switching to coppermine  ;) I was able to override the css settings by using

<a style="font-family:'Lucida Grande', 'Trebuchet MS', Arial;color:#323533" href="xxx">xxx</a>

to get the desired "link-color"

But how can i achieve this with the {SUB_MENU}

Many thanks in advance

mds



« Last Edit: April 21, 2006, 05:10:55 am by TranzNDance »
Logged

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Re: 2 differents text colors for links
« Reply #1 on: April 19, 2006, 12:15:02 am »

post a link to your site
Logged

mdssdm

  • Coppermine newbie
  • Offline Offline
  • Posts: 11
Re: 2 differents text colors for links
« Reply #2 on: April 19, 2006, 09:41:13 am »

Logged

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Re: 2 differents text colors for links
« Reply #3 on: April 19, 2006, 09:55:37 am »

define link properties for the css class that wraps the menu you want to see changed, something like
Code: [Select]
a.test { color:black;}
Logged

mdssdm

  • Coppermine newbie
  • Offline Offline
  • Posts: 11
Re: 2 differents text colors for links
« Reply #4 on: April 19, 2006, 10:46:49 am »

Done the modifcation in template.html and style.css and added a class for SYS_Menu and SUB_Menu.
Links went black but not entirely  ???

Link color for Album and Search remains unchanged (white)

--- snip template.html ---

<table align="center" border="0" cellpadding="0" cellspacing="0" width="900" style="border-left:1px solid #A2A2A3; border-right:1px solid #A2A2A3; border-top:1px solid #D7D7D7">
   <tr> <td class="SubMenu" style="background-image:url(./themes/blue/images/tverlauf3.jpg)" height="20" width="1" align="center"> {SUB_MENU}</td> </tr>
   <tr>
      <TD>
         <table class="gallerymain" width="100%" align="center" border="0">
            <tr>
               <TD>
                  <table align="center" width="100%" border="0" cellpadding="15" cellspacing="15">
                     <tr>
                                 <td valign="top" align="center">
                                   {ADMIN_MENU}
                                  {GALLERY}
                                 <div style="text-align:center;">
                                   <div>
                          {LANGUAGE_SELECT_FLAGS}<br />
                          {THEME_SELECT_LIST}{LANGUAGE_SELECT_LIST}
                          </div>
                          </div>
                                 </td>
                            </tr>
                  </table>
               </TD>   
            </tr>
         </table>
      </TD>
   <tr> <td style="background-image:url(./themes/blue/images/tverlauf4.jpg)" height="18" width="1"> </td> </tr>
</table>


--- snip template.html ---

--- snip css ---

a {
   color: #FFFFFF;
   text-decoration: none;
}

a.hover {
   COLOR: #555555;
   TEXT-DECORATION: none;
   background-color:#F5E283;
}

.SysMenu {
   font-family: 'Lucida Grande', Geneva, Tahoma , Verdana, Arial, sans-serif;
   font-size: 12px;
        display: block;
        margin-bottom: 2px;
}

.SubMenu {
   color: #000000;}

.SysMenu a:hover {
        color: #555555;
   background-color:#F5E283;
        text-decoration: none;
}

.SubMenu a:hover {
        color: #555555;
   background-color:#F5E283;
        text-decoration: none;
}

.SubMenu a:link {
        color: #000000;
   text-decoration: none;
}

--- snip css ---
Logged

Joachim Müller

  • Dev Team member
  • Coppermine addict
  • ****
  • Offline Offline
  • Gender: Male
  • Posts: 47843
  • aka "GauGau"
    • gaugau.de
Re: 2 differents text colors for links
« Reply #5 on: April 19, 2006, 01:05:54 pm »

doesn't surprise me, as you changed the class that controls the menu. The search and album links are controlled by different classes. Take a look at http://forum.coppermine-gallery.net/index.php?topic=24056.msg123520#msg123520 to find out what class controls what section of the output.
Logged

mdssdm

  • Coppermine newbie
  • Offline Offline
  • Posts: 11
Re: 2 differents text colors for links
« Reply #6 on: April 19, 2006, 11:11:11 pm »

Already using the Web-Developer Tool for Mozilla. It's a very useful little thing...

But it shows me only the css class which I declared to controll the Menu (in this case .SubMenu)
So I'm stuck in here

Other interesting thing is:

Using Mozilla under linux the link color for "Album" and "Search" remains unchanged,
but using Konqueror all links are changing to black

Will try IE tomorrow, maybe there is a problem in interpreting css instructions for different Browsers
Logged

mdssdm

  • Coppermine newbie
  • Offline Offline
  • Posts: 11
Re: 2 differents text colors for links
« Reply #7 on: April 20, 2006, 09:43:56 am »

Well it's a completely different picture on IE....

Display is cluttered really awful, especially the SubMenu row, or better what was suppoesed to be the SubMenu row.
It's not a row anymore, more like columns....

Right now, I'm not quite sure what's going on

Will also try Opera

Logged

mdssdm

  • Coppermine newbie
  • Offline Offline
  • Posts: 11
Re: 2 differents text colors for links
« Reply #8 on: April 20, 2006, 11:35:34 pm »

issue solved
css problem !!
Logged
Pages: [1]   Go Up
 

Page created in 0.022 seconds with 15 queries.