Page 1 of 1

2 Questions Changing color on block titles

Posted: 23. February 2019 23:26
by Neves
Hi,
1- Where can I change the font color in board block titles in dark vision?
and
2- The size of board block links ?
please see pic
Image

Thanks

Re: 2 Questions Changing color on block titles

Posted: 24. February 2019 09:21
by Kirk
Hi
1. Go to root/ext/board3/portal/styles/prosilver/template/portal/modules/ open all html files in this directory
Find:

Code: Select all

{$TITLE}
Replace with:

Code: Select all

<span class="b3p-blocktitle">{$TITLE}<span>
Open: root/ext/board3/portal/styles/dark_vision/theme/portal.css
at the end insert this:

Code: Select all

.b3p-blocktitle {
	color: #ffa500;
}
Change the color to your liking.

In the end "ACP -> General" --> purge cache
It's recommended to purge your browser cache too.

2. The size of the links results from the link text.

Re: 2 Questions Changing color on block titles

Posted: 25. February 2019 00:45
by Neves
Thank you