Unable to find these properties in style manager...

JVCode

Well-known member
I'm banging my head right now because I'm unable to find the following in style properties...

  • (See the yellow marked areas)
Capture.webp

  • The yellow behind the text input area...
Capture1.webp

  • The yellow behind the text input area...
Capture 3.webp

  • How do I remove the arrow in the image below ?
Capture 4.webp

Thanks very much :)
 
Not everything is in Style Properties.

The easiest thing to do is use one of the browser inspection tools and utilise EXTRA.css.
 
you can change the background for the fields (this will change ALL fields) from white to some other color with this:

Code:
.textCtrl
{
background-color: #FFCC33;
}


However, when the field is active (when you click into the field), the yellow gradient is an image......
http://xenforo.com/community/threads/gradient-images-color-in-image-change-color-to-css.50331/

you would need to change the image itself in order to change the color from "yellow" to something else, since the color is build into the image. it is not using CSS for the color.

:coffee:
 
in order to change the color of the line (your very first screenshot), put this code into your template "extra.css"

Code:
.nodeList .categoryForumNodeInfo, .nodeList .forumNodeInfo, .nodeList .pageNodeInfo, .nodeList .linkNodeInfo {
    border-bottom: 1px solid #DDDDDD !important;
}
 
this is for the Profile:
Code:
.messageSimple {
    border-bottom: 1px solid #FFCC33 !important;
}


this is for the thread-list:
Code:
.discussionListItem {
    border-bottom: 1px solid #FFCC33 !important;
}
 
but you could just use this code, then the color of the line should change everywhere in one shot :D

Code:
.primaryContent {
    border-bottom: 1px solid #FFCC33 !important;
}
 
Actually the border concerned is in style properties, go to appearance--->style properties -->building blocks---> primary content--> Look at border bottom.

The yellow gradient inside text field look under Forms--> text control, focused state --> clear the gradient bg image.
And maybe you should do also text area, focused state.


And for user info arrow, paste inside extra.css
Code:
.messageUserBlock .arrow {display:none!important;}
 
Top Bottom