Prosilver doesn't have a icon_user_online.gif there is an icon_offline.gif and an icon_online.gif (I don't know about Dark edition).Bruce Banner wrote: Fri Nov 29, 2019 4:20 am Can someone please tell me how to move the above image (icon_user_online.gif) from the right of pages over to the left? I've been trying to figure it out all night but I give up.
open content.css findBruce Banner wrote: Fri Nov 29, 2019 4:20 am Can someone please tell me how to move the above image (icon_user_online.gif) from the right of pages over to the left? I've been trying to figure it out all night but I give up.
Code: Select all
.online {
background-image: none;
background-position: 100% 0;
background-repeat: no-repeat;
}
100%
to 0
Prosilver has icon_user_online.gif not icon_offline.gif or icon_online.gifwarmweer wrote: Fri Nov 29, 2019 8:35 am Prosilver doesn't have a icon_user_online.gif there is an icon_offline.gif and an icon_online.gif
I stand corrected (forgot to check the language folder in /theme)
yeah they do but aren't used anymore someone should delete them honestlywarmweer wrote: Fri Nov 29, 2019 9:14 amI stand corrected (forgot to check the language folder in /theme)
but icon_online.gif and icon_offline.gif do exist in the /theme/images folder
Those were for the STYLES_IMAGESET_TABLE as a matter of fact.Mannix_ wrote: Fri Nov 29, 2019 9:21 am yeah they do but aren't used anymore someone should delete them honestly
use incognito mode of your browserBruce Banner wrote: Fri Nov 29, 2019 5:10 pm Sorry, I'm having a major problem. I CANNOT get my browser's cache to refresh properly. Any browser (I've tried three of them). I managed to get icon_user_online over to the left once before but then I forgot how. The problem now is my browser still remembers when I did it right the first time and won't show me what my profile page should look like NOW. I've tried ctrl+F5 and ctrl+R and nothing works. Even though I haven't made any adjustments yet to the basic 3.2.8 files, my browser keeps showing me what my profile page should look like when I do instead of what it actually looks like now. This is driving me mad.
Nope, just tried that, didn't work.Mannix_ wrote: Fri Nov 29, 2019 7:31 pmuse incognito mode of your browserBruce Banner wrote: Fri Nov 29, 2019 5:10 pm Sorry, I'm having a major problem. I CANNOT get my browser's cache to refresh properly. Any browser (I've tried three of them). I managed to get icon_user_online over to the left once before but then I forgot how. The problem now is my browser still remembers when I did it right the first time and won't show me what my profile page should look like NOW. I've tried ctrl+F5 and ctrl+R and nothing works. Even though I haven't made any adjustments yet to the basic 3.2.8 files, my browser keeps showing me what my profile page should look like when I do instead of what it actually looks like now. This is driving me mad.
Yeah, I'm definitely doing all that. My browser just won't refresh properly. It keeps showing me pages as they used to look, not how they do look now.Lumpy Burgertushie wrote: Fri Nov 29, 2019 8:46 pm double check that you are editing the correct files and/or that you are putting them back in the correct place etc.
robert
Code: Select all
.online {
background-image: url("./en/icon_user_online.gif") !important;
background-position: 100% 0 !important;
background-repeat: no-repeat !important;
}
Thanks. I figured it out. It actually wasn't a browser issue. I'd actually changed an image and then forgotten I'd changed the image, so then when I saw the new one, I thought, wait, where's the old one? Why aren't I seeing that? So it was my fault. All sorted now. And I happened to come across those lines of code in dark.css last night. I'd looked for them in content.css because I'd assumed if they were in that file in prosilver, they'd be in that file in prosilver Dark Edition. Serves me right for thinking logically, I guess. But when I noticed the file dark.css, I just searched for the word online in it and found those lines. Thanks again.Talk19Zehn wrote: Sat Nov 30, 2019 12:32 am Well, the offshoots in their concept are not that bad either. For example, I could use and / or swap them and use my own:
In an EXT perhaps ...
.online:before {
content: " Online " url("./images/icon_online.gif");
font-size: larger;
font-weight: bold;
}
.online {
background-image: none;
}
Or in a style (here styles/yourstyle/theme/de) here e.q. language de
/* Online image */
.online { background-image: url("./icon_online.gif"); background-position: 99% 10px; }
Back to the topic: Note prosilver_dark
In Prosilver (Dark Edition)
copyright = © PlanetStyles.net (Premium Forum Themes)
style_version = 1.0.1
phpbb_version = 3.2.8
the online graphic is declared in the dark.css line 70:
Maybe this is the mistake in your editing:Code: Select all
.online { background-image: url("./en/icon_user_online.gif") !important; background-position: 100% 0 !important; background-repeat: no-repeat !important; }
Hint: The dark.css is loaded as last position in the stylesheet.css and thus overrides the conventional rules.
First it says icon_user_online.gif to left (viewtopic) and now it says in profile on the left side.
Or is both meant? I lost the overview.
Regards
I have styles in which the online.png of the css and image folder and not from the language folder is grabbed. But for user online in pmyeah they do but aren't used anymore someone should delete them honestly
You'll probably need to purge cache (phpBB cache).Bruce Banner wrote: Fri Nov 29, 2019 9:03 pm Yeah, I'm definitely doing all that. My browser just won't refresh properly. It keeps showing me pages as they used to look, not how they do look now.