Neu Link Farben Top-Bar

IchBinEs

Sehr aktives Mitglied
25. September 2012
1.838
39
Moin,

irgendwie stelle ich mich naja an ;)

ich bekomme es nicht hin im Child-Template oben in der Top-Bar die Link-Farbe zu ändern.
Entweder ändere ich sie für alle oder gar nicht.


Vielleicht kann mir wer auf die Sprünge helfen :)
 

IchBinEs

Sehr aktives Mitglied
25. September 2012
1.838
39
Code:
@media only screen
and (max-width : 520px) and (orientation : landscape)
{#logo a img {
  max-height: 50px;
}}

@media only screen
and (max-width : 320px) and (orientation : portrait)
{#logo a img {
  max-height: 40px;
}}

@media only screen
and (min-width : 750px)
{#logo a img {
  max-height: 90px;
max-width: 400px;
}}

@media only screen
and (min-width : 1200px)
{#logo a img {
  max-height: 150px;
max-width: 650px;
}}


 /* Header oben = TopBar*/
#top-bar    {
  background-color:#AB9A9B;
  max-width:  100%;
 color: #6A131A;

  }

so sieht meine "standard.css" aus, wenn den "background-color" ändere ist diese auch sofort da
 

css-umsetzung

Offizieller Servicepartner
SPBanner
6. Juli 2011
7.112
1.867
Berlin
und wo definierst du die links in der Topbar?

das hier macht nur den normalen Text farbig
Code:
 /* Header oben = TopBar*/
#top-bar    {
  background-color:#AB9A9B;
  max-width:  100%;
 color: #6A131A;

  }

das hier würde den link farbig machen
Code:
 /* Header oben = TopBar*/
#top-bar    a {

 color: #6A131A;

  }
 

Ähnliche Themen