Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt November 11, 2024
Subseven Posted March 14, 2017 Posted March 14, 2017 I downloaded the IPS Dark theme from the Marketplace and am trying to go with a black/orange setup. Can anybody please tell me exactly where to go to edit these?
sweethoney Posted March 14, 2017 Posted March 14, 2017 go to your them and you should change everything there just hit the edit button
Subseven Posted March 14, 2017 Author Posted March 14, 2017 2 minutes ago, sweethoney said: go to your them and you should change everything there just hit the edit button I've been in there for a while. Not so easy I'm afraid I must be missing it or it's in another spot. Also these if possible.
Subseven Posted March 14, 2017 Author Posted March 14, 2017 6 minutes ago, sweethoney said: did you try the text colores Yeah.
sweethoney Posted March 14, 2017 Posted March 14, 2017 i see ok someone here who is using that them will answer you
LiquidFractal Posted March 14, 2017 Posted March 14, 2017 16 minutes ago, Subseven said: I've been in there for a while. Not so easy I'm afraid I must be missing it or it's in another spot. Also these if possible. To edit the "4 Members, 0 Guests" text, select your theme in the AdminCP, click edit (the pen, not the code brackets), and select the Text Colors tab, then change the "Light text" color. But the problem is that this color is also used by the generic shaded text across the site, so you can't edit one without editing a lot of text across your site. I'm afraid I don't know how to change that specifically, as I don't really have time of my own to delve into advanced theming. Good luck!
Subseven Posted March 14, 2017 Author Posted March 14, 2017 Thanks, but that don't change it. It changes text elsewhere.
LiquidFractal Posted March 14, 2017 Posted March 14, 2017 I can help you with the search field text. I've included below the custom CSS code I use to control the color of the Quick Search field on my own site. You need to include this code in your theme's custom.css file. To get to this file: Go to your themes listing, and for your theme click Edit HTML and CSS </> On the next screen, click the CSS tab. In the Search templates... field, enter custom.css and hit Enter. Click the filename when it shows up in the directory tree and it will open as a tab in the editing screen. Copy/paste the text below, title the section as you want and save it. Don't save in any other file, because your changes will be overwritten with theme updates. custom.css is never overwritten, and all your changes are read on top of the base theme settings. So you may have to tweak the color values to get what you want (sorry, can't remember which one specifically controls the Search... text), but a bit of trial and error will get you what you want. Hope this helps! /* SEARCH: the color of the quick search menu on the splash page */ #elSearch { border-radius: 20px; padding: 4px 10px 4px 10px; background: #8ec5f9; color: #fff; margin: 2px 0; height: 26px; width: 170px; position: relative; opacity: 0.8; {prefix="transition" value="0.1s all linear"} } #elSearch #elSearchField::-webkit-input-placeholder{ color: #fff; } #elSearch #elSearchField::-moz-placeholder{ color: #fff; } #elSearch #elSearchField:-ms-input-placeholder{ color: #fff; } #elSearch #elSearchField:-moz-placeholder{ color: #fff; }
LiquidFractal Posted March 14, 2017 Posted March 14, 2017 7 minutes ago, Subseven said: Thanks, but that don't change it. It changes text elsewhere. Are you sure? I just changed it on my site and it changes the "Online Now" information text color as well as the feed information on my Blog and Database feeds. Unless the theme has a fundamentally different setup than the default (which is the only one I've modified).
Subseven Posted March 14, 2017 Author Posted March 14, 2017 Oh I'm sure. See the pic below. The CSS edit didn't do anything either.
LiquidFractal Posted March 14, 2017 Posted March 14, 2017 Ahh. Sorry I couldn't be of help. About the only thing I can tell you is how I managed to muddle through the changes I made on my own: One thing you can try (if you haven't already): for the element you want to change, select it on the webpage, right-click it and click Inspect Element (or the equivalent). In the window that opens, look for CSS tag names that identify that element and where it's contained. Then, in the CSS window where you found custom.css, enter that tag name in the search field. You'll get a list of files that mention that tag. You may need to do a bit of looking, but often you can find what you need changed that way (although there are things like the Quick Search menu that are more complicated). One drawback - which many have mentioned - is that there don't seem to be any diagrams available which point to elements on a theme's page(s) with tag values so one could just look them up and change them. All of this said, I just deal with the default theme right now. There are others here far more knowledgeable than me about theming and customization. Best of luck!
sweethoney Posted March 15, 2017 Posted March 15, 2017 Add backgroung and round border on navbar you can change this to what you are doing this will change it for you to orange #elUserNav { background-color: #2D2D2D; padding: 2px 15px; border-radius: 2px; right: 15px !important; } that will only add to the back round and this will ad to the users add to css #elUserNav > li > a { color: #ffffff !important; }
Subseven Posted March 18, 2017 Author Posted March 18, 2017 On 3/15/2017 at 5:10 PM, sweethoney said: Add backgroung and round border on navbar you can change this to what you are doing this will change it for you to orange #elUserNav { background-color: #2D2D2D; padding: 2px 15px; border-radius: 2px; right: 15px !important; } that will only add to the back round Thanks. Will that only change the background of the search field box so you can see what you are typing? The user edit for the Who's Online didn't work.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.