I am trying to edit my colour scheme for Eclipse. (Windows!)
I seem to be unable to change the following white areas in the image below.
I know the following code works for certain areas:
.MPart Tree, .MPart Table{
background-color:black;
color: white;
}
If anybody could redirect me to a website containing everything css property or post some code I would be thankful!
The windows I want changed are the ones below in white!
Those white areas are governed by source code styling. Easiest way to change them is to use other plugin like Eclipse Color Theme. If you want to create your own theme you can modify a theme file or use http://www.eclipsecolorthemes.org/
You can also change them manually using Window -> Preferences and then Java -> Editor -> Syntax Coloring.
Related
Hi I am new on here first of all nice to meet you all
I am facing a problem on wordpress
I am using "Quick Download Button" Plugin which the link is https://wordpress.org/plugins/quick-download-button/#description
after I have install it on my site I tried to change the button colour by css but I never ever success to change it. I have checked the button in inspect and I copied it but it didn't work.
what I tried was
.g-btn.f-l
{
color: #3c1c1c;
}
but it never worked.
please anyone help will be awsome thanks and sorry for my bad english
Like #jared said - it shouldn't be too hard to find the right selector and change the color within your browsers dev-tools. If you see the color change, bingo! Then if that doesn't work within your css file itself, you might have an ordering issue with your sites css files (i.e. your css is loading before the plugins). Quick way to test this is add the !important selector to that rule on your file - e.g:
color: #3c1c1c !important;
the css color-parameter is not defining the color of the button, but from the text of the button. if you want to change the color of the button, you need to look after "background" or "background-color".
example:
.g-btn.f-l{
color: #FFFFFF;
Background-color: #3c1c1c;
}
Visible example:
Source of example: Kryptonews Lexikon
How to change the background and text color of every read more button on my website?
The site has "swift" theme.
There should be a option in Wordpress admin panel to edit website's appearance, including font size, color and stuff like that. I have not worked on the Swift theme but from the little experience I have, theme's options have such features to modify color/size/font without having to write CSS for it.
OR you can add custom CSS to your website, but for that you will need to write CSS which may overlap with other settings on the website if not done carefully.
The 'Read More' element has 'moretext' class, so you need to work on CSS to customize it. Something like this:
.moretext { background: #ffffff; color: 000000; }
Here's the documentation https://codex.wordpress.org/Customizing_the_Read_More
I am turning here with an issue I can't seem to solve.
For these tabs: http://helsus.org/2776-2/ I am currently using a accordion (via Wordpress Visual Composer plugin). I am not able to change each tab/its tile into a different color (which is needed for the project). Each try ends with the all the titles in the same color (for example, now it's violet).
I have associated each of the tabs/tab titles with a custom ID, but when I try to insert this ID into a code, it doesn't work.
Any ideas how to get each of the tab into a different color?
Help would be appreciated!
Edgars
Within the VC editor it is not possible to give each tab a different color.
You could solve your problem with CSS. I don't think it's really that convenient.
#prog-vides-darzs .vc_tta-panel-heading {
background: black;
}
#prog-veselibas-darzs .vc_tta-panel-heading {
background: green;
}
You could repeat this for every item in your accordion.
It could also be possible to do this within the VC editor but this will require some customization to either the core of VC or for you to create a custom VC element.
We have a website here: http://musegroupreno.com/
It is using the Zerif Pro Theme.
I have been able to change all the colors except for the ones in the Muse With Us section. They are the 4 colored circles with the number 100 inside of them. I have tried using firebug to find where the CSS code is to change this and have tried taking a color sample from them and changing any of those colors in the CSS file to the color we want. This worked for other sections on the site but not here. Can anyone tell me where the code is to change these colors?
The CSS is generated by a plugin called Knob which creates the canvas element and is not visible in developer tools CSS panel.
Go to this file: http://musegroupreno.com/wp-content/themes/zerif-pro/js/jquery.knob.min.js in your file server and edit the fgcolor values for each skill.
jQuery(".skill1").knob({
'max':100,
'width': 64,
'readOnly':true,
'inputColor':' #FFFFFF ',
'bgColor':' #222222 ',
'fgColor':' #e96656 ' /* Change this */
});
I am using Wordpress template Simple market and the default text colour is green but I want to change it to black. Even the widgets I install go green. Is there a way to change the whole color rather than changing it in css one by one?
You can put some CSS in your theme's style.css file to override its green text-color with black text-color, for example:
body {
color: black;
}
if the above not work, try something like:
body {
color: black !important;
}
This is just a quick patch but not a final solution. When your have better understanding in the theme you mentioned, you can use some tools like Firebug to locate the actual CSS codes and to search and replace them in style.css file which they belong to. That will be better.
Go to Style.css
replace green color(you will find it using colorpix) to black(i.e #000000) using find and replace feature in any stylesheet editor.
Simple enough and no other way.