XombieMike
Administrator
Fifty Storms
Posts: 4,009
inherit
Administrator
236
0
1
Nov 20, 2024 4:46:31 GMT -6
4,236
XombieMike
4,009
Jul 8, 2015 7:10:22 GMT -6
July 2015
xombiemike
|
Post by XombieMike on Jul 20, 2016 14:15:37 GMT -6
Clear you mean the same image that's behind our profile pics? Reducing the resolution will make the image size smaller and tile differently. Maybe I can manage the priority of how images load.
|
|
Clear
Global Moderator
[TI0] お疲れ様でした、IGA!
Posts: 351
inherit
975
0
1
Oct 26, 2019 10:58:24 GMT -6
287
Clear
[TI0] お疲れ様でした、IGA!
351
Dec 14, 2015 20:00:39 GMT -6
December 2015
clear
|
Post by Clear on Jul 20, 2016 17:48:24 GMT -6
XombieMike Yes, that's the one I'm talking about. I'm throwing out a guess that maybe the image(s) you're using to create the background are individually huge in size, and so each page here that uses that image tends to load the image slower than the rest of the page's components. Instead of reducing resolution specifically, maybe a more general request would be to somehow reduce the image file size being referenced while creating the background. Whatever you are able to do. Just restating that the image layer order is really only an issue on the home page, where the bg image is the most used. I can't find that kind of issue anywhere else.
|
|
fatihG
Devil Forgemaster
Fifty Storms
I am the morning sun, come to vanquish this horrible night!
Posts: 313
inherit
Devil Forgemaster
1312
0
1
May 26, 2021 21:25:49 GMT -6
342
fatihG
I am the morning sun, come to vanquish this horrible night!
313
Jun 9, 2016 17:36:43 GMT -6
June 2016
fatihg
|
Post by fatihG on Jul 21, 2016 4:41:50 GMT -6
Are you still planning on adding the bars to the bottom of the boxes?
The go to top button, will you replace that as well?
As for the 'post body' planning on addin a border or something around it? And if so, do you need my help to create a border for it?
I had made a start for replacing the buttons as well, the pagination ones (prev, 1, 2, next etc.) If you feel like the theme had progresed far enough and you dont have the time/energy for it. im fine with calling it done.
We can always do smaller polish changes in the future.
|
|
XombieMike
Administrator
Fifty Storms
Posts: 4,009
inherit
Administrator
236
0
1
Nov 20, 2024 4:46:31 GMT -6
4,236
XombieMike
4,009
Jul 8, 2015 7:10:22 GMT -6
July 2015
xombiemike
|
Post by XombieMike on Jul 21, 2016 5:29:16 GMT -6
Are you still planning on adding the bars to the bottom of the boxes? The go to top button, will you replace that as well? As for the 'post body' planning on addin a border or something around it? And if so, do you need my help to create a border for it? I had made a start for replacing the buttons as well, the pagination ones (prev, 1, 2, next etc.) If you feel like the theme had progresed far enough and you dont have the time/energy for it. im fine with calling it done. We can always do smaller polish changes in the future. Not sure how to add those bottom bars. I know you got one area working, but don't know how. Go to top/bottom button changes every theme because it's a plug in. Borders are something I want but lack the skill to accomplish without a lot of time and DETERMINATION. The number buttons would be cool. They are made completely from CSS instead of images at the moment, but so we're the create thread and reply buttons. It would be a challenge, but I could probably figure that out. My only experience with CSS is this site so I'm learning by necessity. It's a rewarding hobby and your suggestions and contributions are very much appreciated.
|
|
fatihG
Devil Forgemaster
Fifty Storms
I am the morning sun, come to vanquish this horrible night!
Posts: 313
inherit
Devil Forgemaster
1312
0
1
May 26, 2021 21:25:49 GMT -6
342
fatihG
I am the morning sun, come to vanquish this horrible night!
313
Jun 9, 2016 17:36:43 GMT -6
June 2016
fatihg
|
Post by fatihG on Jul 21, 2016 7:21:40 GMT -6
Yeah, css is .. interesting. Im updating my own site whenever I have time and trying to implement some CSS stuff as well. It's enjoyable.
So for the bottom bar on the testbed I just used some cells with fixed widths for the left and right side and full width for the center piece. I just copy pasted that piece of code to the bottom of the 'Board Information & Statistics' css. Looks like we'd need to copy paste that for each section.
<table width="100%" height="18px" border="0" cellpadding="0" cellspacing="0"> <tbody> <tr> <td width="18px" background="http://www.fagurd.com/BSMods/ForumTheme/BottomBarLeft.png"></td> <td background="http://www.fagurd.com/BSMods/ForumTheme/BottomBarMid.png" ></td> <td background="http://www.fagurd.com/BSMods/ForumTheme/BottomBarRight.png" width="18px"></td> </tr> </tbody> </table> Thats what i used for testing... Im sure there is a better way to do it..
Ill see if I an at least hack something together using the table setup for the post border.
|
|
Rixuel
Loyal Familiar
[TI0] Adventurer/Gamer. Only believe what make sense.
Posts: 397
inherit
143
0
Mar 29, 2021 10:42:00 GMT -6
165
Rixuel
[TI0] Adventurer/Gamer. Only believe what make sense.
397
Jun 14, 2015 13:10:11 GMT -6
June 2015
rixuel
|
Post by Rixuel on Jul 21, 2016 10:33:13 GMT -6
Here's my to do list. Can everyone please let me know if I'm missing anything? Hover color to be red for reply and create thread buttons. Mobile version heading text color and menu for navigation is unreadable. Selecting a post turns background white. Border images around boards (if I can code it). if you want the "Reply" to be red when hover, I have this css code you can put in the css: reply-button:hover {color: red;}
|
|
fatihG
Devil Forgemaster
Fifty Storms
I am the morning sun, come to vanquish this horrible night!
Posts: 313
inherit
Devil Forgemaster
1312
0
1
May 26, 2021 21:25:49 GMT -6
342
fatihG
I am the morning sun, come to vanquish this horrible night!
313
Jun 9, 2016 17:36:43 GMT -6
June 2016
fatihg
|
Post by fatihG on Jul 21, 2016 11:13:55 GMT -6
Here's my to do list. Can everyone please let me know if I'm missing anything? Hover color to be red for reply and create thread buttons. Mobile version heading text color and menu for navigation is unreadable. Selecting a post turns background white. Border images around boards (if I can code it). if you want the "Reply" to be red when hover, I have this css code you can put in the css: reply-button:hover {color: red;} that'll just replace the colour wont it? dont think that'd look good tbh. Only the text should change anyway.
|
|
Rixuel
Loyal Familiar
[TI0] Adventurer/Gamer. Only believe what make sense.
Posts: 397
inherit
143
0
Mar 29, 2021 10:42:00 GMT -6
165
Rixuel
[TI0] Adventurer/Gamer. Only believe what make sense.
397
Jun 14, 2015 13:10:11 GMT -6
June 2015
rixuel
|
Post by Rixuel on Jul 21, 2016 22:59:14 GMT -6
if you want the "Reply" to be red when hover, I have this css code you can put in the css: reply-button:hover {color: red;} that'll just replace the colour wont it? dont think that'd look good tbh. Only the text should change anyway. Well when you hover on it with your cursor, the text color change. oops i made a little mistake, i forgot the dot. .reply-button:hover {color: red;} (you can use hex color too if you dont want to use "red" lol) in the HTML part, <a class="reply-button" href="/post/new/1151">Reply</a>
|
|
JeffCross
Shadow of the Night
Ancient Legion
[TI0] Die monster!!!!!!
Posts: 1,365
inherit
Shadow of the Night
46
0
Aug 2, 2019 16:52:01 GMT -6
711
JeffCross
[TI0] Die monster!!!!!!
1,365
Jun 9, 2015 16:58:57 GMT -6
June 2015
jeffcross773
|
Post by JeffCross on Jul 23, 2016 12:34:37 GMT -6
This is perfect, I like
|
|
XombieMike
Administrator
Fifty Storms
Posts: 4,009
inherit
Administrator
236
0
1
Nov 20, 2024 4:46:31 GMT -6
4,236
XombieMike
4,009
Jul 8, 2015 7:10:22 GMT -6
July 2015
xombiemike
|
Post by XombieMike on Jul 23, 2016 12:42:40 GMT -6
Rixuel here is what I had to do to get the hover text to be red in only the button areas: #content > div.container.threads > div.title-bar > ul > li > a:hover, #content > div.container.posts > div.title-bar > ul > li > a:hover, #content > div.container.quick-reply > div.title-bar > ul > li > a:hover, #content > div.container.messages > div.title-bar > ul > li > a:hover { color: @nav_tree_hover_color !important;} The CSS for this forum all starts from a template by the host. It isn't easy to navigate or modify. The demo menu theme is now the default for the forum. I will continue to work on it when I can, but it's good enough to use. Remember, the other themes are still available.
|
|
Rixuel
Loyal Familiar
[TI0] Adventurer/Gamer. Only believe what make sense.
Posts: 397
inherit
143
0
Mar 29, 2021 10:42:00 GMT -6
165
Rixuel
[TI0] Adventurer/Gamer. Only believe what make sense.
397
Jun 14, 2015 13:10:11 GMT -6
June 2015
rixuel
|
Post by Rixuel on Jul 25, 2016 19:36:11 GMT -6
I'm using Firefox, I see some posts start to blinking/disappearing again.
I went back to page 3 of this thread and check fatihg post with the screenshots, it blinking/disappears.
|
|
JeffCross
Shadow of the Night
Ancient Legion
[TI0] Die monster!!!!!!
Posts: 1,365
inherit
Shadow of the Night
46
0
Aug 2, 2019 16:52:01 GMT -6
711
JeffCross
[TI0] Die monster!!!!!!
1,365
Jun 9, 2015 16:58:57 GMT -6
June 2015
jeffcross773
|
Post by JeffCross on Jul 26, 2016 5:45:24 GMT -6
I'm using Firefox, I see some posts start to blinking/disappearing again. I went back to page 3 of this thread and check fatihg post with the screenshots, it blinking/disappears. me too, though it is not doing as much as it did... it is still happening.
|
|