Hi Raimon - can you tell me how to change the background colour of this quote box please? I don't like the light grey, and want to use white (#ffffff) instead.Raimon wrote:Since i noticed a lot of topics about how to recolour prosilver , i though a topic like this would be useful. Before we begin we turn the cache of , so it will prevent that you always must refresh your theme or prune your cache.
Code: Select all
blockquote {
background-color: #EBEADD;
background-image: url("{T_THEME_PATH}/images/quote.gif");
border-color:#DBDBCE;
}
Code: Select all
a.forumtitle:hover {
color: #BC2A4D;
}
Code: Select all
a.topictitle:hover {
color: #BC2A4D;
}
Code: Select all
/*
--------------------------------------------------------------
Colours and backgrounds for links.css
-------------------------------------------------------------- */
a:link { color: #105289; }
a:visited { color: #105289; }
a:hover { color: #D31141; }
a:active { color: #368AD2; }
Code: Select all
.postbody h3 img {
/* Also see tweaks.css */
vertical-align: bottom;
}
Code: Select all
.postbody h3 a:link {
color: #FF0000;
}
Yes but that changes both colours. All I want to do is change the hover colour.Raimon wrote:if you want to change only the h3 on postings:
open content.css
search:
add before:Code: Select all
.postbody h3 img { /* Also see tweaks.css */ vertical-align: bottom; }
Code: Select all
.postbody h3 a:link { color: #FF0000; }
Just use this code:David Sims wrote:
Yes but that changes both colours. All I want to do is change the hover colour.
On this topic 'Re: [How to] colorize prosilver' is dark blue at the top of each user's post, but then switches to dark red when you hover the cursor over it. It is that red I want to change, but also leave the dark blue in place.
Code: Select all
.postbody h3 a:hover {
color: #FF0000;
}
open styles/prosilver/template/viewtopic_body.htmlI also want to change the '[How to] colorize prosilver' at the top of each page of each topic, just above the Post Reply and Search buttons.
Code: Select all
<h2><a href="{U_VIEW_TOPIC}">{TOPIC_TITLE}</a></h2>
Code: Select all
<h2><a href="{U_VIEW_TOPIC}" style="color: #FF0000;">{TOPIC_TITLE}</a></h2>
Code: Select all
/* a.forumtitle:visited { color: #105289; } */
No you need this code on colours.css ;achievehigh.org wrote:Hi,
Question 1:
How do I change the blue color of the words "Rules and Guidelines" in this printscreen? Please take a look at the printscreen here . Situation: When I clicked on the forum name "Rules and Guideslines," it changes from green to blue. I want it to change to another color, not the original blue of the prosilver. How to change that particular color? I checked the visited link in the forum/styles/prosilver/theme/colours.css , but it did not seem to be the place that I needed to edit the color.
2nd Edit: Is it this code? I tried to change it, but it did not seem to be the right code to edit.Code: Select all
/* a.forumtitle:visited { color: #105289; } */
Code: Select all
a.forumtitle:active {
color: #105289;
}
You need to edit the image /styles/prosilver/imageset/en/icon_user_online.gif , and recolor it to o other color , with a program like photo-shop.Question 2:
How do I change the color from blue to other colors for the "online" diagonal display on the right of the avatar (where it tells you whether a particular member is online at that moment).
Its a funny , but creative ideaAside note:
If you're wondering, I purposely made the borders green on the top and orange on the bottom so sort of half green and half orange for the border. I thought it was creative and very different so I left it like that. It was not because I didn't understand the instructions of the tutorial.
Code: Select all
a.forumtitle:active {
color: #408D0E;
}
I recolored the "online" icon but when I put the text on that diagonal background, the text is underneath, not above it. How do I put the text "online" above the background instead? Also, can I request for the original photoshop image of this /styles/prosilver/imageset/en/icon_user_online.gif at phpbb.com forum to edit?Raimon wrote:You need to edit the image /styles/prosilver/imageset/en/icon_user_online.gif , and recolor it to o other color , with a program like photo-shop.