Links colours and Blocks border colour
DSF2 19
From: -
From: -
Notice
This topic is archived. New comments cannot be posted and votes cannot be cast.Responses to this topic
1 Re: Links colours and Blocks border colour
Philipp Esselbach
From: -
Editor
0From: -
You can edit both in CSS mode (here to edit the cascade style sheet (CSS) directly):
To set the link color to black, change:
to:
The CSS for the blocks is here:
To set the link color to black, change:
a
{
text-decoration: none;
color: rgb(30, 2, 253);
}
a:hover
{
text-decoration: underline;
color: rgb(30, 2, 253);
}
to:
a
{
text-decoration: none;
color: rgb(0, 0, 0);
}
a:hover
{
text-decoration: underline;
color: rgb(0, 0, 0);
}
The CSS for the blocks is here:
.colleft .content, .colright .content
{
border-style: solid;
border-color: rgb(0, 0, 0);
border-width: 0px 1px 1px;
padding: 2pt;
background-color: rgb(236, 242, 251);
font-family: LucidaGrande, Verdana, Helvetica, sans-serif;
text-align: left;
color: rgb(0, 0, 0);
font-size: 12px;
}
.colleft h1, .colright h1
{
border-style: solid solid none;
border-color: rgb(0, 0, 0);
border-width: 1px;
margin: 0px;
padding: 2pt;
font-weight: bold;
color: rgb(255, 255, 255);
font-family: LucidaGrande, Verdana, Helvetica, sans-serif;
font-style: normal;
text-transform: none;
text-align: left;
font-size: 12px;
background-color: rgb(0, 78, 164);
}
There is a way to make all the link from the website in black instead of blue, and also I want to know how we can change the color of the blocks border ?
Thanks