How to change MeBox's link color?
I would like to change this dark bleue (linked text) but I can't find where is it anyway
Tried to find more info in style.css, nothing seen but there 're other css files (from /app./dashboard/design/...) and may be ;-) it could be managed via JS, isn't ?
Checked with color picker tool but it doesn't work in this dropdown menu
Please, do you know where I should looking for... many thanks in advance
PS: v2.2.3.4 (default theme)
Best Answer
-
peregrine MVP
one way create a new theme based on default.
1) copy everything in themes/default
to /themes/pamela
2) modify the themes/pamela/about.php
to make it work, at the very least the ThemeInfo line (imust be the same name matching uppercase and lower-case as the folder name)
e.g. so /themes/JoETheme would exactly match name in about.php $ThemeInfo['JoETheme'] = array(
the 'Name' - helps you identify theme in dashboard
$ThemeInfo['pamela'] = array( 'Name' => 'My new Pamela Theme',
you can also modify anything else you want in the folder themes/pamela/
3) create a custom.css (if there is none and put this in your themes/pamela/design/custom.sss
.MeMenu a { color: green !important; }
depending on what you want to do you could also change .FlyoutMenu a { for all flyouts
when modifying themes - good idea to delete .ini files in /cache folder after you make changes to css
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
5
Answers
Voila ;-) because my English is very poor...
try adding the
!important
flag after your css, for examplecolor: #000 !important
There was an error rendering this rich post.
You can look on YouTube for "inspect element" and you'll find something like this: www.youtube.com/watch?v=a39u2B58Bv4
I haven't watched the complete clip, and if the hole video is as professional as the intro than there might be better videos on YouTube, but it should be enough to get you going
one way create a new theme based on default.
1) copy everything in themes/default
to /themes/pamela
2) modify the themes/pamela/about.php
to make it work, at the very least the ThemeInfo line (imust be the same name matching uppercase and lower-case as the folder name)
e.g. so /themes/JoETheme would exactly match name in about.php $ThemeInfo['JoETheme'] = array(
the 'Name' - helps you identify theme in dashboard
you can also modify anything else you want in the folder themes/pamela/
3) create a custom.css (if there is none and put this in your themes/pamela/design/custom.sss
depending on what you want to do you could also change .FlyoutMenu a { for all flyouts
when modifying themes - good idea to delete .ini files in /cache folder after you make changes to css
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
In fact tried to know original color, in order to find later in style.css where it could be used (sometime, more than only one time)
but you 're right, with this way, if CSS ID/class is known, then I can change it ;-) even if I don't know this blue hexa code
thank you @peregrine, @R_J & @Tama for your support...