This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

Links colours and Blocks border colour


avatar
DSF2 19
From: -
Links colours and Blocks border colour

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

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
avatar
Editor
0
From: -
You can edit both in CSS mode (here to edit the cascade style sheet (CSS) directly):

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);
}

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.