Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Easy change of activity-design


nickrita
Participant

@nickrita

@ Xevo, thank you very much, you made my day! The Urls have no special classes. I solved my problem by adding one and put it behind this line .activity-list .activity-content a:first-child:focus { outline: none; }:

.activity-list .activity-header a {

background: #fff;

color: #081831;

font-family:Georgia,”Times New Roman”,Times,serif;

font-size:1.5em;

font-style:bold;

}

The result can be seen on http://tastentango.de, which is my test-site for http://netzkritzler.de.

I had to change the code for the first-child, too, in order not to let it take the css from above:

.activity-header a:first-child, span.highlight {

background: #ececec;

border-bottom: 1px solid #e4e3e3;

border-right: 1px solid #e4e3e3;

color: #777;

font-size: 10px;

font-family: Arial, Tahoma, Verdana, sans-serif;

padding: 3px 8px;

text-decoration: none;

-moz-border-radius: 4px;

-webkit-border-radius: 4px;

border-radius: 4px;

margin-right: 3px;

}

I hope this will help everybody with the same problem as I had.

Skip to toolbar