Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
forum_css [2023/09/06 09:05] – Completed the full CSS selector reference. kallisteroforum_css [2025/02/02 02:54] (current) – [Nav Bar Elements.] melon
Line 3: Line 3:
 ====== How to access MelonLand's forum profile customization? ====== ====== How to access MelonLand's forum profile customization? ======
  
-From your main profile view, go to //Modify Profile// category > //Ultimate Profile// > Scroll down to //Customization// text field.+From your main profile view, go to //Modify Profile// category > //About Me / Profile// > Scroll down to //Customization// text field.
  
 [[https://i.imgur.com/99JAnek.png|Image Example]] [[https://i.imgur.com/99JAnek.png|Image Example]]
Line 152: Line 152:
 ====== Full CSS Selector Reference ====== ====== Full CSS Selector Reference ======
  
-Every CSS selector you could want for profile customization! Still a work in progress, so hold tight!+Every CSS selector you could want for profile customization! 
 + 
 +//First compiled from the profile-page build that was live on September 6th, 2023, so if things are now out of date or incomplete, please update.//
  
 ===== Theme Selectors. ===== ===== Theme Selectors. =====
Line 163: Line 165:
  
 **Important Note:** **Important Note:**
-It's highly recommended that you always use a theme selector for any of your other styles (for instance, using "//#theme-melon #wrapper//" instead of using "//#wrapper//"). Otherwise, setting any of the other selectors will affect all themes.+It's highly recommended that you always use a theme selector for any of your other styles (for instance, using "//#theme-melon .catbg//" instead of using "//.catbg//"). Otherwise, setting any of the other selectors will affect all themes.
  
 ---- ----
Line 271: Line 273:
   * **#melonland-surf-club + p** - The holster for the forum links at the top (Home, Entrance, Wiki, etc.)   * **#melonland-surf-club + p** - The holster for the forum links at the top (Home, Entrance, Wiki, etc.)
   * **#melonland-surf-club + p a** - All individual forum links at the top   * **#melonland-surf-club + p a** - All individual forum links at the top
-  * **#melonland-surf-club + p a:first-child** - "Home" link +  * **#melonland-surf-club + p a:first-child** - "Entrance" link 
-  * **#melonland-surf-club + p a:first-child img** - "Home" link image +  * **#melonland-surf-club + p a:first-child img** - "Entrance" link image 
-  * **#melonland-surf-club + p a:nth-child(2)** - "Entrance" link +  * **#melonland-surf-club + p a:nth-child(2)** - "Events" link 
-  * **#melonland-surf-club + p a:nth-child(2) img** - "Entrance" link image +  * **#melonland-surf-club + p a:nth-child(2) img** - "Events" link image 
-  * **#melonland-surf-club + p a:nth-child(3)** - "Wiki" link +  * **#melonland-surf-club + p a:nth-child(3)** - "Profile" link 
-  * **#melonland-surf-club + p a:nth-child(3) img** - "Wiki" link image +  * **#melonland-surf-club + p a:nth-child(3) img** - "Profile" link image 
-  * **#melonland-surf-club + p a:nth-child(4)** - "Search" link +  * **#melonland-surf-club + p a:nth-child(4)** - "Chat" link 
-  * **#melonland-surf-club + p a:nth-child(4) img** - "Search" link image +  * **#melonland-surf-club + p a:nth-child(4) img** - "Chat" link image 
-  * **#melonland-surf-club + p a:nth-child(5)** - "Profile" link +  * **#melonland-surf-club + p a:nth-child(5)** - "Art" link 
-  * **#melonland-surf-club + p a:nth-child(5) img** - "Profile" link image +  * **#melonland-surf-club + p a:nth-child(5) img** - "Art" link image 
-  * **#melonland-surf-club + p a:nth-child(6)** - "Logout" link +  * **#melonland-surf-club + p a:nth-child(6)** - "Search" link 
-  * **#melonland-surf-club + p a:nth-child(6) img** - "Logout" link image+  * **#melonland-surf-club + p a:nth-child(6) img** - "Search" link image 
 +etc etc for each link...
  
 ---- ----