Jump to content

Jake's LTT forum fixes

Syntaxvgm

Don't feel comfortable in the new theme? 

Well this is a work in progress fix for it!

While the new IP board 4 theme looks good, it's not really user friendly. Most forums that follow modern design have that issue- message boards should be designed like you are making a gui for a complex program, not a website. 

What does my fix do? It tries to make this a little better, without hurting the style too much. It's not gonna look perfect, but it will hopefully be more comfortable. 

This is a work in progress, but I wanted to get my first fixes out immediately. In the mean time, I encourage you to use it, and make suggestions. 

There's a dark theme version, but hte light theme looks better. I'll work on the dark theme more when I've finished adding to this mostly. 

Keep in mind that since I'm not making plugins or greasemonkey/tampermonkey scripts (as of yet, I just don't have time ), these are CSS fixes only. CSS has limits on its own, including annoying things like the fact there's  a child selector but no parent selector. 

Change list so far-

-Made it full width on high resolution monitors 
(I enjoy responsiveness, but not filling high res screens on a tech forum? shame)

-Added shadows on ui elements to make them pop more 

-Bumped topic replies closer

-Made avatars part of the post, removed rounded edges 

-fixed some of the padding

-added shadow to the nav bar. It had one, but only when scrolling

-Some button changes

-Made reputation options colorful and larger
I wish I could force this on all users. The main issue with the small and thin buttons is it doens't encourage people to use them in my expierence. THe nice thing about he IP Board 3 big fat blue button was people actually used it, verses some forums with a  small rep link 

-Made page headers look like the rest of the content (work in progress)

-Limited size of embedded videos
a problem that grew out of hand with widescreen fix (Will apply reponsive fixes as well in future )

To come-

A lot of stuff 

 

Preview

Before

NzGN3R0.png

After

hXCCXcA.png

Before 

kWcwzfx.png

After

siJE1iO.png

Before

63SuM9D.png

After

qeMplty.png

How to install

First, install the Stylish plugin. The stylish plugin allows you to specify custom CSS for webpages. 

Chrome Firefox

Firefox users

Stylish icon> Manage styles

Click "Write new style"

Give it a title

Insert this code, click save, enable

Code for light theme 

Spoiler

 

 


@-moz-document url-prefix("https://linustechtips.com/main/"){
/*light theme*/
.ipsLayout_container {
max-width: none;
}
.ipsBox:not( .ipsBox_transparent ):not( .ipsModerated ) {
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
}
/*.lmgPost {
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
}*/
.ipsComment{
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
}
.ipsComment{
margin-bottom: 5px;
}
.lmgPost {
box-shadow: none;
}
.ipsComment_author{
background-color: #ffffff;
}
.ipsUserPhoto{
border-radius: 0px;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);  
}
.ipsWidget.ipsWidget_horizontal .ipsWidget_title {
padding-top: 10px;
padding-bottom: 10px;
padding-left: 15px;
padding-right: 15px;
}
.ipsPad_half, .ipsApp ul.ipsPad_half, .ipsApp ol.ipsPad_half{
padding-top: 10px;
padding-bottom: 10px;
padding-left: 15px;
padding-right: 15px;
}
#lmgNav{
box-shadow: 0 2px 5px 0 rgba(0,0,0,0.4)
}
.ipsButton_important {
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);  
}
.ipsButton_primary {
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);  
}
.ipsPageHeader{
background-color: #ffffff;
padding-left: 15px;
padding-right: 15px;
padding-top: 10px;
padding-bottom: 10px;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
margin-bottom: 0px;
}
.ipsEmbeddedVideo iframe {
    max-height: 400px;
    max-width: 700px;
}

.ipsEmbeddedVideo.ipsEmbeddedVideo_limited > div, .ipsEmbeddedVideo:not( .ipsEmbeddedVideo_limited ){
    padding-bottom: 400px;
}

.advrep-buttons {
font-size: 16px;
margin-right: 10px;
}
.advrep-buttons li{
margin-right: 0px;
}
.advrep-buttons li i{
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25); 
border-radius: 3px;
}
.advrep-buttons li > a[href*="type=1"] > i{
background-color: #007B00;
color: #ffffff;
padding: 5px;
}
.advrep-buttons li > a[href*="type=2"] > i{
background-color: #6B00B9;
color: #ffffff;
padding: 5px;
}
.advrep-buttons li > a[href*="type=4"] > i{
background-color: #FFEB00;
color: #000000;
padding: 5px;
}
.advrep-buttons li > a[href*="type=5"] > i{
background-color: #FF0000;
color: #ffffff;
padding: 5px;
}
.advrep-buttons li > a[href*="type=6"] > i{
background-color: #3b5998;
color: #ffffff;
padding: 5px;
}
}

 

 

 

 

Dark theme 

Spoiler

@-moz-document url-prefix("https://linustechtips.com/main/"){
/* dark theme*/
.ipsLayout_container {
max-width: none;
}
.ipsBox:not( .ipsBox_transparent ):not( .ipsModerated ) {
    box-shadow: 0px 0px 10px 0px rgba(255,255,255,0.25);
}
/*.lmgPost {
box-shadow: 0px 0px 10px 0px rgba(255,255,255,0.25);
}*/
.ipsComment{
box-shadow: 0px 0px 10px 0px rgba(255,255,255,0.25);
}
.ipsComment{
margin-bottom: 5px;
}
.lmgPost {
box-shadow: none;
}
.ipsComment_author{
background-color: #2a2a2a;
}
.ipsUserPhoto{
border-radius: 0px;
box-shadow: 0px 0px 10px 0px rgba(255,255,255,0.25);  
}
.ipsWidget.ipsWidget_horizontal .ipsWidget_title {
padding-top: 10px;
padding-bottom: 10px;
padding-left: 15px;
padding-right: 15px;
}
.ipsPad_half, .ipsApp ul.ipsPad_half, .ipsApp ol.ipsPad_half{
padding-top: 10px;
padding-bottom: 10px;
padding-left: 15px;
padding-right: 15px;
}
#lmgNav{
box-shadow: 0 2px 5px 0 rgba(255,255,255,0.4)
}
.ipsButton_important {
box-shadow: 0px 0px 10px 0px rgba(255,255,255,0.25);  
}
.ipsButton_primary {
    box-shadow: 0px 0px 10px 0px rgba(255,255,255,0.25);  
}
.ipsPageHeader{
background-color: #2a2a2a;
padding-left: 15px;
padding-right: 15px;
padding-top: 10px;
padding-bottom: 10px;
box-shadow: 0px 0px 10px 0px rgba(255,255,255,0.25);
margin-bottom: 0px;
}
.ipsEmbeddedVideo iframe {
    max-height: 400px;
    max-width: 700px;
}

.ipsEmbeddedVideo.ipsEmbeddedVideo_limited > div, .ipsEmbeddedVideo:not( .ipsEmbeddedVideo_limited ){
    padding-bottom: 400px;
}

.advrep-buttons {
font-size: 16px;
margin-right: 10px;
}
.advrep-buttons li{
margin-right: 0px;
}
.advrep-buttons li i{
box-shadow: 0px 0px 10px 0px rgba(255,255,255,0.25); 
border-radius: 3px;
}
.advrep-buttons li > a[href*="type=1"] > i{
background-color: #007B00;
color: #ffffff;
padding: 5px;
}
.advrep-buttons li > a[href*="type=2"] > i{
background-color: #6B00B9;
color: #ffffff;
padding: 5px;
}
.advrep-buttons li > a[href*="type=4"] > i{
background-color: #FFEB00;
color: #000000;
padding: 5px;
}
.advrep-buttons li > a[href*="type=5"] > i{
background-color: #FF0000;
color: #ffffff;
padding: 5px;
}
.advrep-buttons li > a[href*="type=6"] > i{
background-color: #3b5998;
color: #ffffff;
padding: 5px;
}
}

 

Chrome users 

Click stylish icon > Mange installed styles

Click "Write new style"

By "Applies to" specify "URLS Starting with"

https://linustechtips.com/main/

For the code box 

Light theme

Spoiler

/*light theme*/
.ipsLayout_container {
max-width: none;
}
.ipsBox:not( .ipsBox_transparent ):not( .ipsModerated ) {
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
}
/*.lmgPost {
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
}*/
.ipsComment{
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
}
.ipsComment{
margin-bottom: 5px;
}
.lmgPost {
box-shadow: none;
}
.ipsComment_author{
background-color: #ffffff;
}
.ipsUserPhoto{
border-radius: 0px;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);  
}
.ipsWidget.ipsWidget_horizontal .ipsWidget_title {
padding-top: 10px;
padding-bottom: 10px;
padding-left: 15px;
padding-right: 15px;
}
.ipsPad_half, .ipsApp ul.ipsPad_half, .ipsApp ol.ipsPad_half{
padding-top: 10px;
padding-bottom: 10px;
padding-left: 15px;
padding-right: 15px;
}
#lmgNav{
box-shadow: 0 2px 5px 0 rgba(0,0,0,0.4)
}
.ipsButton_important {
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);  
}
.ipsButton_primary {
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);  
}
.ipsPageHeader{
background-color: #ffffff;
padding-left: 15px;
padding-right: 15px;
padding-top: 10px;
padding-bottom: 10px;
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
margin-bottom: 0px;
}
.ipsEmbeddedVideo iframe {
    max-height: 400px;
    max-width: 700px;
}

.ipsEmbeddedVideo.ipsEmbeddedVideo_limited > div, .ipsEmbeddedVideo:not( .ipsEmbeddedVideo_limited ){
    padding-bottom: 400px;
}

.advrep-buttons {
font-size: 16px;
margin-right: 10px;
}
.advrep-buttons li{
margin-right: 0px;
}
.advrep-buttons li i{
box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25); 
border-radius: 3px;
}
.advrep-buttons li > a[href*="type=1"] > i{
background-color: #007B00;
color: #ffffff;
padding: 5px;
}
.advrep-buttons li > a[href*="type=2"] > i{
background-color: #6B00B9;
color: #ffffff;
padding: 5px;
}
.advrep-buttons li > a[href*="type=4"] > i{
background-color: #FFEB00;
color: #000000;
padding: 5px;
}
.advrep-buttons li > a[href*="type=5"] > i{
background-color: #FF0000;
color: #ffffff;
padding: 5px;
}
.advrep-buttons li > a[href*="type=6"] > i{
background-color: #3b5998;
color: #ffffff;
padding: 5px;
}

 

Dark theme 

Spoiler

/* dark theme*/
.ipsLayout_container {
max-width: none;
}
.ipsBox:not( .ipsBox_transparent ):not( .ipsModerated ) {
    box-shadow: 0px 0px 10px 0px rgba(255,255,255,0.25);
}
/*.lmgPost {
box-shadow: 0px 0px 10px 0px rgba(255,255,255,0.25);
}*/
.ipsComment{
box-shadow: 0px 0px 10px 0px rgba(255,255,255,0.25);
}
.ipsComment{
margin-bottom: 5px;
}
.lmgPost {
box-shadow: none;
}
.ipsComment_author{
background-color: #2a2a2a;
}
.ipsUserPhoto{
border-radius: 0px;
box-shadow: 0px 0px 10px 0px rgba(255,255,255,0.25);  
}
.ipsWidget.ipsWidget_horizontal .ipsWidget_title {
padding-top: 10px;
padding-bottom: 10px;
padding-left: 15px;
padding-right: 15px;
}
.ipsPad_half, .ipsApp ul.ipsPad_half, .ipsApp ol.ipsPad_half{
padding-top: 10px;
padding-bottom: 10px;
padding-left: 15px;
padding-right: 15px;
}
#lmgNav{
box-shadow: 0 2px 5px 0 rgba(255,255,255,0.4)
}
.ipsButton_important {
box-shadow: 0px 0px 10px 0px rgba(255,255,255,0.25);  
}
.ipsButton_primary {
    box-shadow: 0px 0px 10px 0px rgba(255,255,255,0.25);  
}
.ipsPageHeader{
background-color: #2a2a2a;
padding-left: 15px;
padding-right: 15px;
padding-top: 10px;
padding-bottom: 10px;
box-shadow: 0px 0px 10px 0px rgba(255,255,255,0.25);
margin-bottom: 0px;
}
.ipsEmbeddedVideo iframe {
    max-height: 400px;
    max-width: 700px;
}

.ipsEmbeddedVideo.ipsEmbeddedVideo_limited > div, .ipsEmbeddedVideo:not( .ipsEmbeddedVideo_limited ){
    padding-bottom: 400px;
}

.advrep-buttons {
font-size: 16px;
margin-right: 10px;
}
.advrep-buttons li{
margin-right: 0px;
}
.advrep-buttons li i{
box-shadow: 0px 0px 10px 0px rgba(255,255,255,0.25); 
border-radius: 3px;
}
.advrep-buttons li > a[href*="type=1"] > i{
background-color: #007B00;
color: #ffffff;
padding: 5px;
}
.advrep-buttons li > a[href*="type=2"] > i{
background-color: #6B00B9;
color: #ffffff;
padding: 5px;
}
.advrep-buttons li > a[href*="type=4"] > i{
background-color: #FFEB00;
color: #000000;
padding: 5px;
}
.advrep-buttons li > a[href*="type=5"] > i{
background-color: #FF0000;
color: #ffffff;
padding: 5px;
}
.advrep-buttons li > a[href*="type=6"] > i{
background-color: #3b5998;
color: #ffffff;
padding: 5px;
}

 

Give it a name in the left panel, check "enable" and click save. 

muh specs 

Gaming and HTPC (reparations)- ASUS 1080, MSI X99A SLI Plus, 5820k- 4.5GHz @ 1.25v, asetek based 360mm AIO, RM 1000x, 16GB memory, 750D with front USB 2.0 replaced with 3.0  ports, 2 250GB 850 EVOs in Raid 0 (why not, only has games on it), some hard drives

Screens- Acer preditor XB241H (1080p, 144Hz Gsync), LG 1080p ultrawide, (all mounted) directly wired to TV in other room

Stuff- k70 with reds, steel series rival, g13, full desk covering mouse mat

All parts black

Workstation(desk)- 3770k, 970 reference, 16GB of some crucial memory, a motherboard of some kind I don't remember, Micomsoft SC-512N1-L/DVI, CM Storm Trooper (It's got a handle, can you handle that?), 240mm Asetek based AIO, Crucial M550 256GB (upgrade soon), some hard drives, disc drives, and hot swap bays

Screens- 3  ASUS VN248H-P IPS 1080p screens mounted on a stand, some old tv on the wall above it. 

Stuff- Epicgear defiant (solderless swappable switches), g600, moutned mic and other stuff. 

Laptop docking area- 2 1440p korean monitors mounted, one AHVA matte, one samsung PLS gloss (very annoying, yes). Trashy Razer blackwidow chroma...I mean like the J key doesn't click anymore. I got a model M i use on it to, but its time for a new keyboard. Some edgy Utechsmart mouse similar to g600. Hooked to laptop dock for both of my dell precision laptops. (not only docking area)

Shelf- i7-2600 non-k (has vt-d), 380t, some ASUS sandy itx board, intel quad nic. Currently hosts shared files, setting up as pfsense box in VM. Also acts as spare gaming PC with a 580 or whatever someone brings. Hooked into laptop dock area via usb switch

Link to comment
Share on other sites

Link to post
Share on other sites

Nice work, I'll try it out tomorrow probably. 

CPU: Intel 3570 GPUs: Nvidia GTX 660Ti Case: Fractal design Define R4  Storage: 1TB WD Caviar Black & 240GB Hyper X 3k SSD Sound: Custom One Pros Keyboard: Ducky Shine 4 Mouse: Logitech G500

 

Link to comment
Share on other sites

Link to post
Share on other sites

this is actually very helpful. having a wide screen and the information not going half way across it is sorta of a pain. Will give this a shot

Tsubasa (The 7680x1440 beast): CPU: Intel i7 8086k | Cooler: Fully Custom Rigid Loop MOBO: Asus Z370-I ITX | GPU: Nvidia Titan Xp Star Wars | RAM: 32Gb 2x16gb Gskill Trident Z RGB | SSD: Samsung 1TB 970 Evo Nvme, 2TB Micron Sata SSD | Case: Fractal Design Nano S | PSU: Corsair SF600 With Full custom cables  

Link to comment
Share on other sites

Link to post
Share on other sites

@Syntaxvgm Can you create a guide on how to create a style to modify a desired element?
This guide would assume that the reader would know how to code

LIBERATOR: Core i5 6400 @ 2.7GHz | GeForce GTX 670 2 GB | HyperX Fury 8GB DDR4 @ 2133 MHz | 250 GB Samsung 850 Evo SSD
My new build; Liberator, Check it out

The more friendly we are, the more helpful we are!

 

MY OLD BUILD (AKA PREBUILT MONSTROSITY)
INSANITY: AMD Athlon II X2 @ 3.0 GHz | Geforce GT 720 2 GB | 4 GB DDR3 @ 1333 MHz | 120 GB Silicon Power SSD | 500 GB Hitachi HDD

Link to comment
Share on other sites

Link to post
Share on other sites

1 minute ago, Philcat101 said:

@Syntaxvgm Can you create a guide on how to create a style to modify a desired element?
This guide would assume that the reader would know how to code

I intend to do that in the future, and label the existing sections and what they do so the user can chose to change/remove them. 

muh specs 

Gaming and HTPC (reparations)- ASUS 1080, MSI X99A SLI Plus, 5820k- 4.5GHz @ 1.25v, asetek based 360mm AIO, RM 1000x, 16GB memory, 750D with front USB 2.0 replaced with 3.0  ports, 2 250GB 850 EVOs in Raid 0 (why not, only has games on it), some hard drives

Screens- Acer preditor XB241H (1080p, 144Hz Gsync), LG 1080p ultrawide, (all mounted) directly wired to TV in other room

Stuff- k70 with reds, steel series rival, g13, full desk covering mouse mat

All parts black

Workstation(desk)- 3770k, 970 reference, 16GB of some crucial memory, a motherboard of some kind I don't remember, Micomsoft SC-512N1-L/DVI, CM Storm Trooper (It's got a handle, can you handle that?), 240mm Asetek based AIO, Crucial M550 256GB (upgrade soon), some hard drives, disc drives, and hot swap bays

Screens- 3  ASUS VN248H-P IPS 1080p screens mounted on a stand, some old tv on the wall above it. 

Stuff- Epicgear defiant (solderless swappable switches), g600, moutned mic and other stuff. 

Laptop docking area- 2 1440p korean monitors mounted, one AHVA matte, one samsung PLS gloss (very annoying, yes). Trashy Razer blackwidow chroma...I mean like the J key doesn't click anymore. I got a model M i use on it to, but its time for a new keyboard. Some edgy Utechsmart mouse similar to g600. Hooked to laptop dock for both of my dell precision laptops. (not only docking area)

Shelf- i7-2600 non-k (has vt-d), 380t, some ASUS sandy itx board, intel quad nic. Currently hosts shared files, setting up as pfsense box in VM. Also acts as spare gaming PC with a 580 or whatever someone brings. Hooked into laptop dock area via usb switch

Link to comment
Share on other sites

Link to post
Share on other sites

2 minutes ago, Technicolors said:

wow, this made a pretty big difference! not much wasted space now 

Right here- 

Clicked agree, and people are giving me "Informative" for this topic

A "Thanks" or regular likes category would be what were missing here. Cause the likes were kinda a nice catch all. Kinda flawwed, I had a ton of like but 99% of it was not productive to the LTT community, my sarcasm, ect. But still. 

muh specs 

Gaming and HTPC (reparations)- ASUS 1080, MSI X99A SLI Plus, 5820k- 4.5GHz @ 1.25v, asetek based 360mm AIO, RM 1000x, 16GB memory, 750D with front USB 2.0 replaced with 3.0  ports, 2 250GB 850 EVOs in Raid 0 (why not, only has games on it), some hard drives

Screens- Acer preditor XB241H (1080p, 144Hz Gsync), LG 1080p ultrawide, (all mounted) directly wired to TV in other room

Stuff- k70 with reds, steel series rival, g13, full desk covering mouse mat

All parts black

Workstation(desk)- 3770k, 970 reference, 16GB of some crucial memory, a motherboard of some kind I don't remember, Micomsoft SC-512N1-L/DVI, CM Storm Trooper (It's got a handle, can you handle that?), 240mm Asetek based AIO, Crucial M550 256GB (upgrade soon), some hard drives, disc drives, and hot swap bays

Screens- 3  ASUS VN248H-P IPS 1080p screens mounted on a stand, some old tv on the wall above it. 

Stuff- Epicgear defiant (solderless swappable switches), g600, moutned mic and other stuff. 

Laptop docking area- 2 1440p korean monitors mounted, one AHVA matte, one samsung PLS gloss (very annoying, yes). Trashy Razer blackwidow chroma...I mean like the J key doesn't click anymore. I got a model M i use on it to, but its time for a new keyboard. Some edgy Utechsmart mouse similar to g600. Hooked to laptop dock for both of my dell precision laptops. (not only docking area)

Shelf- i7-2600 non-k (has vt-d), 380t, some ASUS sandy itx board, intel quad nic. Currently hosts shared files, setting up as pfsense box in VM. Also acts as spare gaming PC with a 580 or whatever someone brings. Hooked into laptop dock area via usb switch

Link to comment
Share on other sites

Link to post
Share on other sites

1 minute ago, zMeul said:

thanks, the original design is shitty

i wouldn't go that far... though i will say it is unoptimized and buggy atm. 

Tsubasa (The 7680x1440 beast): CPU: Intel i7 8086k | Cooler: Fully Custom Rigid Loop MOBO: Asus Z370-I ITX | GPU: Nvidia Titan Xp Star Wars | RAM: 32Gb 2x16gb Gskill Trident Z RGB | SSD: Samsung 1TB 970 Evo Nvme, 2TB Micron Sata SSD | Case: Fractal Design Nano S | PSU: Corsair SF600 With Full custom cables  

Link to comment
Share on other sites

Link to post
Share on other sites

4 minutes ago, That_Random_Guy said:

i wouldn't go that far... though i will say it is unoptimized and buggy atm. 

I would

if it ain't broke, don't fix it - Luke fixed it :(
everything takes too much space, even new line takes double space and need to use SHIFT+ENTER
also, there's a lot of "dead space"

Link to comment
Share on other sites

Link to post
Share on other sites

1 minute ago, zMeul said:

I would

if it ain't broke, don't fix it - Luke fixed it :(

it was  @Cat :^) not luke that did the design I'm pretty certain.  And if this wasn't a forum system, it would be a great design. Very professional. 

muh specs 

Gaming and HTPC (reparations)- ASUS 1080, MSI X99A SLI Plus, 5820k- 4.5GHz @ 1.25v, asetek based 360mm AIO, RM 1000x, 16GB memory, 750D with front USB 2.0 replaced with 3.0  ports, 2 250GB 850 EVOs in Raid 0 (why not, only has games on it), some hard drives

Screens- Acer preditor XB241H (1080p, 144Hz Gsync), LG 1080p ultrawide, (all mounted) directly wired to TV in other room

Stuff- k70 with reds, steel series rival, g13, full desk covering mouse mat

All parts black

Workstation(desk)- 3770k, 970 reference, 16GB of some crucial memory, a motherboard of some kind I don't remember, Micomsoft SC-512N1-L/DVI, CM Storm Trooper (It's got a handle, can you handle that?), 240mm Asetek based AIO, Crucial M550 256GB (upgrade soon), some hard drives, disc drives, and hot swap bays

Screens- 3  ASUS VN248H-P IPS 1080p screens mounted on a stand, some old tv on the wall above it. 

Stuff- Epicgear defiant (solderless swappable switches), g600, moutned mic and other stuff. 

Laptop docking area- 2 1440p korean monitors mounted, one AHVA matte, one samsung PLS gloss (very annoying, yes). Trashy Razer blackwidow chroma...I mean like the J key doesn't click anymore. I got a model M i use on it to, but its time for a new keyboard. Some edgy Utechsmart mouse similar to g600. Hooked to laptop dock for both of my dell precision laptops. (not only docking area)

Shelf- i7-2600 non-k (has vt-d), 380t, some ASUS sandy itx board, intel quad nic. Currently hosts shared files, setting up as pfsense box in VM. Also acts as spare gaming PC with a 580 or whatever someone brings. Hooked into laptop dock area via usb switch

Link to comment
Share on other sites

Link to post
Share on other sites

I love u

Are you new? Please read CoC  Before posting! PLEASE SELECT 'AUTOMATIC' FOR FONT COLOR FOR US DARK THEME USERS (Only for dark shades)If you can read this, it means you need to change to NIGHT THEME (bottom left above LMG logo) Please follow your threads and Quote people when replying to them. Mark your problem as solved if answered. Don't spam, nobody likes a spammer. DO NOT QUOTE IMAGES! BE NICE!

Link to comment
Share on other sites

Link to post
Share on other sites

Sweet! The poster info being put back into the post is my favorite part of this. <33

Is there supposed to be a blurry drop shadow behind the post content though?

EDIT 1

I'd be interested in the same thing as @Philcat101, as I'd really like to destroy all the orange and turn it blue...or something.

EDIT 2

I really wish there was at least an addition to the new set of "likes" that was just "like". lol

 

|  The United Empire of Earth Wants You | The Stormborn (ongoing build; 90% done)  |  Skyrim Mods Recommendations  LTT Blue Forum Theme! | Learning Russian! Blog |
|"They got a war on drugs so the police can bother me.”Tupac Shakur  | "Half of writing history is hiding the truth"Captain Malcolm Reynolds | "Museums are racist."Michelle Obama | "Slap a word like "racist" or "nazi" on it and you'll have an army at your back."MSM Logic | "A new command I give you: love one another. As I have loved you, so you must love one another"Jesus Christ | "I love the Union and the Constitution, but I would rather leave the Union with the Constitution than remain in the Union without it."Jefferson Davis |

Link to comment
Share on other sites

Link to post
Share on other sites

34 minutes ago, Albatross said:

Sweet! The poster info being put back into the post is my favorite part of this. <33

Is there supposed to be a blurry drop shadow behind the post content though?

EDIT 1

I'd be interested in the same thing as @Philcat101, as I'd really like to destroy all the orange and turn it blue...or something.

EDIT 2

I really wish there was at least an addition to the new set of "likes" that was just "like". lol

 

yah I know it doens't look the best, I'm working on not making it look like crap. BUT it makes it more separated and 3d, makes it more comfortable. It looks really crappy on the dark theme (I did white shadows instead of black), and I haven't messed with it yet. 

I'll add some color changing code eventually, and let you substitute your own color. 

muh specs 

Gaming and HTPC (reparations)- ASUS 1080, MSI X99A SLI Plus, 5820k- 4.5GHz @ 1.25v, asetek based 360mm AIO, RM 1000x, 16GB memory, 750D with front USB 2.0 replaced with 3.0  ports, 2 250GB 850 EVOs in Raid 0 (why not, only has games on it), some hard drives

Screens- Acer preditor XB241H (1080p, 144Hz Gsync), LG 1080p ultrawide, (all mounted) directly wired to TV in other room

Stuff- k70 with reds, steel series rival, g13, full desk covering mouse mat

All parts black

Workstation(desk)- 3770k, 970 reference, 16GB of some crucial memory, a motherboard of some kind I don't remember, Micomsoft SC-512N1-L/DVI, CM Storm Trooper (It's got a handle, can you handle that?), 240mm Asetek based AIO, Crucial M550 256GB (upgrade soon), some hard drives, disc drives, and hot swap bays

Screens- 3  ASUS VN248H-P IPS 1080p screens mounted on a stand, some old tv on the wall above it. 

Stuff- Epicgear defiant (solderless swappable switches), g600, moutned mic and other stuff. 

Laptop docking area- 2 1440p korean monitors mounted, one AHVA matte, one samsung PLS gloss (very annoying, yes). Trashy Razer blackwidow chroma...I mean like the J key doesn't click anymore. I got a model M i use on it to, but its time for a new keyboard. Some edgy Utechsmart mouse similar to g600. Hooked to laptop dock for both of my dell precision laptops. (not only docking area)

Shelf- i7-2600 non-k (has vt-d), 380t, some ASUS sandy itx board, intel quad nic. Currently hosts shared files, setting up as pfsense box in VM. Also acts as spare gaming PC with a 580 or whatever someone brings. Hooked into laptop dock area via usb switch

Link to comment
Share on other sites

Link to post
Share on other sites

Sweet baby jesus this is SO MUCH BETTER.

 

Thank you

LanSyndicate Build | i5-6600k | ASRock OC Formula | G.Skill 3600MHz | Samsung 850 Evo | MSI R9-290X 8GB Alphacool Block | Enthoo Pro M | XTR Pro 750w | Custom Loop |

Daily | 5960X | X99 Sabertooth | G.Skill 3000MHz | 750 NVMe | 850 Evo | x2 WD Se 2TB | x2 Seagate 3TB | Sapphire R9-290X 8GB | Enthoo Primo | EVGA 1000G2 | Custom Loop |

Game Box | 4690K | Z97i-Plus | G.Skill 2400MHz | x2 840 Evo | GTX 970 shorty | Corsair 250D modded with H105 | EVGA 650w B2 |

 

Link to comment
Share on other sites

Link to post
Share on other sites

12 hours ago, Albatross said:

 

I really wish there was at least an addition to the new set of "likes" that was just "like". lol

 

I would like it if all the new "likes" would total into actual likes. 

 

So all of the "agree" and "funny" votes you get total into likes and even add into your old likes. 

Different PCPartPickers for different countries:

UK-----Italy----Canada-----Spain-----Germany-----Austrailia-----New Zealand-----'Murica-----France-----India

 

10 minutes ago, Stardar1 said:

Well, with an i7, GTX 1080, Full tower and flashy lights, it can obviously only be for one thing:

Solitaire. 

Link to comment
Share on other sites

Link to post
Share on other sites

2 minutes ago, Stardar1 said:

I would like it if all the new "likes" would total into actual likes. 

 

So all of the "agree" and "funny" votes you get total into likes and even add into your old likes. 

I also miss the likes on mouseover of avatar. I mean, I used to unfairly judge people based on that. 

I mean if you had like 200 posts and 1 like, there's a pattern. 

muh specs 

Gaming and HTPC (reparations)- ASUS 1080, MSI X99A SLI Plus, 5820k- 4.5GHz @ 1.25v, asetek based 360mm AIO, RM 1000x, 16GB memory, 750D with front USB 2.0 replaced with 3.0  ports, 2 250GB 850 EVOs in Raid 0 (why not, only has games on it), some hard drives

Screens- Acer preditor XB241H (1080p, 144Hz Gsync), LG 1080p ultrawide, (all mounted) directly wired to TV in other room

Stuff- k70 with reds, steel series rival, g13, full desk covering mouse mat

All parts black

Workstation(desk)- 3770k, 970 reference, 16GB of some crucial memory, a motherboard of some kind I don't remember, Micomsoft SC-512N1-L/DVI, CM Storm Trooper (It's got a handle, can you handle that?), 240mm Asetek based AIO, Crucial M550 256GB (upgrade soon), some hard drives, disc drives, and hot swap bays

Screens- 3  ASUS VN248H-P IPS 1080p screens mounted on a stand, some old tv on the wall above it. 

Stuff- Epicgear defiant (solderless swappable switches), g600, moutned mic and other stuff. 

Laptop docking area- 2 1440p korean monitors mounted, one AHVA matte, one samsung PLS gloss (very annoying, yes). Trashy Razer blackwidow chroma...I mean like the J key doesn't click anymore. I got a model M i use on it to, but its time for a new keyboard. Some edgy Utechsmart mouse similar to g600. Hooked to laptop dock for both of my dell precision laptops. (not only docking area)

Shelf- i7-2600 non-k (has vt-d), 380t, some ASUS sandy itx board, intel quad nic. Currently hosts shared files, setting up as pfsense box in VM. Also acts as spare gaming PC with a 580 or whatever someone brings. Hooked into laptop dock area via usb switch

Link to comment
Share on other sites

Link to post
Share on other sites

1 minute ago, Syntaxvgm said:

I also miss the likes on mouseover of avatar. I mean, I used to unfairly judge people based on that. 

I mean if you had like 200 posts and 1 like, there's a pattern. 

Or if you had 1 post and 200 likes, there's a problem. 

Different PCPartPickers for different countries:

UK-----Italy----Canada-----Spain-----Germany-----Austrailia-----New Zealand-----'Murica-----France-----India

 

10 minutes ago, Stardar1 said:

Well, with an i7, GTX 1080, Full tower and flashy lights, it can obviously only be for one thing:

Solitaire. 

Link to comment
Share on other sites

Link to post
Share on other sites

Oh my god, dude I love you! (no homo xD)

Finally the forum is usable again!

ASRock Z97 PRO 4| i7-4790К@4600MHz/1.26V| Noctua NH-D14| 16GB ADATA@1800Mhz| Gigabyte GTX 660 WF OC| Samsung 840 Pro 128GB; Samsung 860 Pro 256GB; Samsung 860 EVO 500GB| Seasonic SS-650KM3 Gold| CM Storm QuickFire Ultimate| Mionix Naos 7000|

Link to comment
Share on other sites

Link to post
Share on other sites

18 hours ago, Syntaxvgm said:

-snip-

Holy shit you legend.

i7-7700 | Asrock H270M-ITX | Fractal Design Core 500 | 16GB Corsair Vengeance LPX | EVGA GTX 1080 Ti | 850 EVO 500GB | 850 EVO 250GB | WD CavGreen 2TB

EVGA SuperNOVA 550W | Steel Series Elite Prism | Final mouse 2015 | WASD Keyboards V2 (MX Blue) | Acer Predator 1440p 144Hz

Link to comment
Share on other sites

Link to post
Share on other sites

4 hours ago, Stardar1 said:

Or if you had 1 post and 200 likes, there's a problem. 

Or you just hang out in off topic. There are some people in off topic who just hang out in the anime club who have 3-ish posts and hundreds of likes.

Link to comment
Share on other sites

Link to post
Share on other sites

32 minutes ago, JoeyDM said:

Or you just hang out in off topic. There are some people in off topic who just hang out in the anime club who have 3-ish posts and hundreds of likes.

Ok. 

On an unrelated note, did you know that Code Geass has a massive discontinuity error?

Different PCPartPickers for different countries:

UK-----Italy----Canada-----Spain-----Germany-----Austrailia-----New Zealand-----'Murica-----France-----India

 

10 minutes ago, Stardar1 said:

Well, with an i7, GTX 1080, Full tower and flashy lights, it can obviously only be for one thing:

Solitaire. 

Link to comment
Share on other sites

Link to post
Share on other sites

Just now, Stardar1 said:

Ok. 

On an unrelated note, did you know that Code Geass has a massive discontinuity error?

Oh? Do tell.

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×