[Release] RevCMS Habbo Edit

Lame

Member
Nov 6, 2014
303
78
Hey fuckers. I got bored and decided to just start editing containers and shit, but I ended up liking the result so I'm gonna release it.
Don't bitch if some PHP breaks; it's made for Gold Tree, but you can easily change some of the code (don't be a whiny little goob).
Index and Reg is shit because I couldn't be bothered editing them..
PS: There's no Client.php; just add your own, don't be lazy..


Index:
Register:
Me:
Account:
Community:
Staff:
News:
Values:
Store:
Badge Store:

DL Link:

--------------------
Credit:
98% - Whoever made the Habbo Theme Originally
1% - Boon (I stole the images for the Values page ;) )
1% - Me
--------------------



Some Database Tables you will need for Values and Badges..

Values:
Code:
/*
Navicat MySQL Data Transfer

Source Server         : Habbo
Source Server Version : 50141
Source Host           : localhost:3306
Source Database       : gte

Target Server Type    : MYSQL
Target Server Version : 50141
File Encoding         : 65001

Date: 2016-07-27 09:42:51
*/

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for `values`
-- ----------------------------
DROP TABLE IF EXISTS `values`;
CREATE TABLE `values` (
  `item_status` varchar(255) DEFAULT NULL,
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `price` varchar(255) NOT NULL,
  `imgurl` varchar(255) NOT NULL,
  `timestamp` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=77 DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of values
-- ----------------------------
INSERT INTO `values` VALUES ('', '7', 'Typewriter', '2', 'typo.gif', '');
INSERT INTO `values` VALUES ('', '8', 'Petal Patch', '0.25', 'petal.gif', '');
INSERT INTO `values` VALUES (null, '9', 'Cola Machine', '1.25', 'cola.gif', '');
INSERT INTO `values` VALUES (null, '10', 'Snowglobe', '0.5', 'globe.gif', '');
INSERT INTO `values` VALUES (null, '11', 'Holiday Romance', '0.25', 'holiday.gif', '');
INSERT INTO `values` VALUES (null, '12', 'Lapland Greetings', '0.25', 'lappland.gif', '');
INSERT INTO `values` VALUES (null, '13', 'Speakers\' Corner', '1.5', 'speaker.gif', '');
INSERT INTO `values` VALUES (null, '14', 'Crusoes\' Hammock', '1', 'hammock.gif', '');
INSERT INTO `values` VALUES (null, '17', 'Blue ICM', '20', 'icm_blue.gif', '');
INSERT INTO `values` VALUES (null, '18', 'Choco ICM', '18', 'icm_brown.gif', '');
INSERT INTO `values` VALUES (null, '19', 'Golden ICM', '25', 'icm_gold.gif', '');
INSERT INTO `values` VALUES (null, '20', 'Pink ICM', '10', 'icm_pink.gif', '');
INSERT INTO `values` VALUES (null, '21', 'Red ICM', '15', 'icm_red.gif', '');
INSERT INTO `values` VALUES (null, '22', 'Purple ICM', '17', 'icm_purple.gif', '');
INSERT INTO `values` VALUES (null, '23', 'Fuchsia ICM', '5', 'icm_fuchsia.gif', '');
INSERT INTO `values` VALUES (null, '24', 'Shamrock ICM', '10', 'icm_green.gif', '');
INSERT INTO `values` VALUES (null, '25', 'Ochre ICM', '5', 'icm_ochre.gif', '');
INSERT INTO `values` VALUES (null, '26', 'Aqua ICM', '30', 'icm_aqua.gif', '');
INSERT INTO `values` VALUES (null, '27', 'Black Dragon', '3', 'dragon_black.gif', '');
INSERT INTO `values` VALUES (null, '28', 'Fire Dragon', '9', 'dragon_red.gif', '');
INSERT INTO `values` VALUES (null, '29', 'Bronze Dragon', '3', 'dragon_bronze.gif', '');
INSERT INTO `values` VALUES (null, '30', 'Jade Dragon', '6', 'dragon_jade.gif', '');
INSERT INTO `values` VALUES (null, '31', 'Golden Dragon', '12', 'dragon_gold.gif', '');
INSERT INTO `values` VALUES (null, '32', 'Sky Dragon', '2', 'dragon_sky.gif', '');
INSERT INTO `values` VALUES (null, '33', 'Blue Dragon', '6', 'dragon_blue.gif', '');
INSERT INTO `values` VALUES (null, '34', 'Forest Dragon', '8', 'dragon_green.gif', '');
INSERT INTO `values` VALUES (null, '35', 'Purple Dragon', '1', 'dragon_purple.gif', '');
INSERT INTO `values` VALUES (null, '36', 'Silver Dragon', '5', 'dragon_silver.gif', '');
INSERT INTO `values` VALUES (null, '37', 'Red Pillow', '0.2', 'pillow_red.gif', '');
INSERT INTO `values` VALUES (null, '38', 'Navy Pillow', '0.2', 'pillow_navy.gif', '');
INSERT INTO `values` VALUES (null, '39', 'Pink Pillow', '0.2', 'pillow_pink.gif', '');
INSERT INTO `values` VALUES (null, '40', 'Black Pillow', '0.2', 'pillow_black.gif', '');
INSERT INTO `values` VALUES (null, '41', 'Green Pillow', '0.2', 'pillow_green.gif', '');
INSERT INTO `values` VALUES (null, '42', 'Golden Pillow', '0.2', 'pillow_gold.gif', '');
INSERT INTO `values` VALUES (null, '43', 'Blue Pillow', '0.2', 'pillow_blue.gif', '');
INSERT INTO `values` VALUES (null, '44', 'White Pillow', '0.2', 'pillow_white.gif', '');
INSERT INTO `values` VALUES (null, '47', 'Blue Bird Bath', '0.4', 'bath_blue.gif', '');
INSERT INTO `values` VALUES (null, '48', 'Green Bird Bath', '0.4', 'bath_green.gif', '');
INSERT INTO `values` VALUES (null, '49', 'Grey Bird Bath', '0.4', 'bath_grey.gif', '');
INSERT INTO `values` VALUES (null, '50', 'Red Bird Bath', '0.4', 'bath_red.gif', '');
INSERT INTO `values` VALUES (null, '51', 'Aqua Oriental Screen', '1', 'screen_aqua.gif', '');
INSERT INTO `values` VALUES (null, '52', 'Blue Oriental Screen', '1', 'screen_blue.gif', '');
INSERT INTO `values` VALUES (null, '53', 'Green Oriental Screen', '1', 'screen_green.gif', '');
INSERT INTO `values` VALUES (null, '54', 'Grey Oriental Screen', '1', 'screen_grey.gif', '');
INSERT INTO `values` VALUES (null, '55', 'Navy Oriental Screen', '1', 'screen_navy.gif', '');
INSERT INTO `values` VALUES (null, '56', 'Pink Oriental Screen', '1', 'screen_pink.gif', '');
INSERT INTO `values` VALUES (null, '57', 'Purple Oriental Screen', '1', 'screen_purple.gif', '');
INSERT INTO `values` VALUES (null, '58', 'Red Oriental Screen', '1', 'screen_red.gif', '');
INSERT INTO `values` VALUES (null, '59', 'White Oriental Screen', '1', 'screen_white.gif', '');
INSERT INTO `values` VALUES (null, '60', 'Yellow Oriental Screen', '1', 'screen_yellow.gif', '');
INSERT INTO `values` VALUES (null, '61', 'Aqua Laser Gate', '0.2', 'laser_aqua.gif', '');
INSERT INTO `values` VALUES (null, '62', 'Black Laser Gate', '0.2', 'laser_black.gif', '');
INSERT INTO `values` VALUES (null, '63', 'Blue Laser Gate', '0.2', 'laser_blue.gif', '');
INSERT INTO `values` VALUES (null, '64', 'Green Laser Gate', '0.2', 'laser_green.gif', '');
INSERT INTO `values` VALUES (null, '65', 'Pink Laser Gate', '0.2', 'laser_pink.gif', '');
INSERT INTO `values` VALUES (null, '66', 'Purple Laser Gate', '0.2', 'laser_purple.gif', '');
INSERT INTO `values` VALUES (null, '67', 'Red Laser Gate', '0.3', 'laser_red.gif', '');
INSERT INTO `values` VALUES (null, '68', 'Violet Laser Gate', '0.2', 'laser_violet.gif', '');
INSERT INTO `values` VALUES (null, '69', 'White Laser Gate', '0.2', 'laser_white.gif', '');
INSERT INTO `values` VALUES (null, '70', 'Yellow Laser Gate', '0.3', 'laser_yellow.gif', '');
INSERT INTO `values` VALUES ('', '1', 'Throne', '1', 'throne.gif', '');
INSERT INTO `values` VALUES ('', '2', 'DJ Turntable', '1', 'deck.gif', '');
INSERT INTO `values` VALUES ('', '3', 'Dino Egg', '0.5', 'dino.gif', '');
INSERT INTO `values` VALUES ('', '4', 'Boy Holo', '3', 'hologirl.gif', '');
INSERT INTO `values` VALUES ('', '5', 'Girl Holo', '3', 'holopod.gif', '');
INSERT INTO `values` VALUES ('', '6', 'Samovar', '0.25', 'samovar.gif', '');
Badges:
Code:
/*
Navicat MySQL Data Transfer

Source Server         : Habbo
Source Server Version : 50141
Source Host           : localhost:3306
Source Database       : gte

Target Server Type    : MYSQL
Target Server Version : 50141
File Encoding         : 65001

Date: 2016-07-27 09:43:01
*/

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for `badge_shop`
-- ----------------------------
DROP TABLE IF EXISTS `badge_shop`;
CREATE TABLE `badge_shop` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `badge_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `cost` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of badge_shop
-- ----------------------------
INSERT INTO `badge_shop` VALUES ('1', 'GM1', 'Diamond', 'A nice looking Gem!', '2');
INSERT INTO `badge_shop` VALUES ('2', 'GM2', 'Emerald', 'A nice looking Gem!', '2');
INSERT INTO `badge_shop` VALUES ('3', 'GM3', 'Sapphire', 'A nice looking Gem!', '1');
INSERT INTO `badge_shop` VALUES ('4', 'GM4', 'Ruby', 'A nice looking Gem!', '1');
INSERT INTO `badge_shop` VALUES ('5', 'ZZZ', 'Sulake', 'A secret test badge', '1');
INSERT INTO `badge_shop` VALUES ('6', 'BOT', 'Bot', 'For people with a robotic personality', '3');
INSERT INTO `badge_shop` VALUES ('7', 'FAN', 'Fan', 'I wear this badge to show support for Flow', '3');
INSERT INTO `badge_shop` VALUES ('8', 'UK1', 'Infobus', 'Long live the Infobus!', '5');
INSERT INTO `badge_shop` VALUES ('9', 'UK006', 'Childline', 'I support the efforts of Childline', '2');
INSERT INTO `badge_shop` VALUES ('10', 'Z26', 'King', 'The royal King of Flow!', '4');
INSERT INTO `badge_shop` VALUES ('11', 'Z27', 'Queen', 'Worship me, subjects!', '4');
User Tags:
Code:
/*
Navicat MySQL Data Transfer

Source Server         : Habbo
Source Server Version : 50141
Source Host           : localhost:3306
Source Database       : gte

Target Server Type    : MYSQL
Target Server Version : 50141
File Encoding         : 65001

Date: 2016-07-30 23:33:37
*/

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for `user_tags`
-- ----------------------------
DROP TABLE IF EXISTS `user_tags`;
CREATE TABLE `user_tags` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL,
  `tag` varchar(100) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `user_id` (`user_id`) USING BTREE
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of user_tags
-- ----------------------------
INSERT INTO `user_tags` VALUES ('6', '8', 'Flowwwww!');
INSERT INTO `user_tags` VALUES ('7', '9', 'Dickhole');
 
Last edited:

n4te

zzz
Oct 27, 2014
669
293
Hey fuckers. I got bored and decided to just start editing containers and shit, but I ended up liking the result so I'm gonna release it.
Don't bitch if some PHP breaks; it's made for Gold Tree, but you can easily change some of the code (don't be a whiny little goob).
Index and Reg is shit because I couldn't be bothered editing them..
PS: There's no Client.php; just add your own, don't be lazy..


Index:
Register:
Me:
Account:
Community:
Staff:
News:
Values:
Store:
Badge Store:

DL Link:

--------------------
Credit:
98% - Whoever made the Habbo Theme Originally
1% - Boon (I stole the images for the Values page ;) )
1% - Me
--------------------



Some Database Tables you will need for Values and Badges..

Values:
Code:
/*
Navicat MySQL Data Transfer

Source Server         : Habbo
Source Server Version : 50141
Source Host           : localhost:3306
Source Database       : gte

Target Server Type    : MYSQL
Target Server Version : 50141
File Encoding         : 65001

Date: 2016-07-27 09:42:51
*/

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for `values`
-- ----------------------------
DROP TABLE IF EXISTS `values`;
CREATE TABLE `values` (
  `item_status` varchar(255) DEFAULT NULL,
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) NOT NULL,
  `price` varchar(255) NOT NULL,
  `imgurl` varchar(255) NOT NULL,
  `timestamp` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=77 DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of values
-- ----------------------------
INSERT INTO `values` VALUES ('', '7', 'Typewriter', '2', 'typo.gif', '');
INSERT INTO `values` VALUES ('', '8', 'Petal Patch', '0.25', 'petal.gif', '');
INSERT INTO `values` VALUES (null, '9', 'Cola Machine', '1.25', 'cola.gif', '');
INSERT INTO `values` VALUES (null, '10', 'Snowglobe', '0.5', 'globe.gif', '');
INSERT INTO `values` VALUES (null, '11', 'Holiday Romance', '0.25', 'holiday.gif', '');
INSERT INTO `values` VALUES (null, '12', 'Lapland Greetings', '0.25', 'lappland.gif', '');
INSERT INTO `values` VALUES (null, '13', 'Speakers\' Corner', '1.5', 'speaker.gif', '');
INSERT INTO `values` VALUES (null, '14', 'Crusoes\' Hammock', '1', 'hammock.gif', '');
INSERT INTO `values` VALUES (null, '17', 'Blue ICM', '20', 'icm_blue.gif', '');
INSERT INTO `values` VALUES (null, '18', 'Choco ICM', '18', 'icm_brown.gif', '');
INSERT INTO `values` VALUES (null, '19', 'Golden ICM', '25', 'icm_gold.gif', '');
INSERT INTO `values` VALUES (null, '20', 'Pink ICM', '10', 'icm_pink.gif', '');
INSERT INTO `values` VALUES (null, '21', 'Red ICM', '15', 'icm_red.gif', '');
INSERT INTO `values` VALUES (null, '22', 'Purple ICM', '17', 'icm_purple.gif', '');
INSERT INTO `values` VALUES (null, '23', 'Fuchsia ICM', '5', 'icm_fuchsia.gif', '');
INSERT INTO `values` VALUES (null, '24', 'Shamrock ICM', '10', 'icm_green.gif', '');
INSERT INTO `values` VALUES (null, '25', 'Ochre ICM', '5', 'icm_ochre.gif', '');
INSERT INTO `values` VALUES (null, '26', 'Aqua ICM', '30', 'icm_aqua.gif', '');
INSERT INTO `values` VALUES (null, '27', 'Black Dragon', '3', 'dragon_black.gif', '');
INSERT INTO `values` VALUES (null, '28', 'Fire Dragon', '9', 'dragon_red.gif', '');
INSERT INTO `values` VALUES (null, '29', 'Bronze Dragon', '3', 'dragon_bronze.gif', '');
INSERT INTO `values` VALUES (null, '30', 'Jade Dragon', '6', 'dragon_jade.gif', '');
INSERT INTO `values` VALUES (null, '31', 'Golden Dragon', '12', 'dragon_gold.gif', '');
INSERT INTO `values` VALUES (null, '32', 'Sky Dragon', '2', 'dragon_sky.gif', '');
INSERT INTO `values` VALUES (null, '33', 'Blue Dragon', '6', 'dragon_blue.gif', '');
INSERT INTO `values` VALUES (null, '34', 'Forest Dragon', '8', 'dragon_green.gif', '');
INSERT INTO `values` VALUES (null, '35', 'Purple Dragon', '1', 'dragon_purple.gif', '');
INSERT INTO `values` VALUES (null, '36', 'Silver Dragon', '5', 'dragon_silver.gif', '');
INSERT INTO `values` VALUES (null, '37', 'Red Pillow', '0.2', 'pillow_red.gif', '');
INSERT INTO `values` VALUES (null, '38', 'Navy Pillow', '0.2', 'pillow_navy.gif', '');
INSERT INTO `values` VALUES (null, '39', 'Pink Pillow', '0.2', 'pillow_pink.gif', '');
INSERT INTO `values` VALUES (null, '40', 'Black Pillow', '0.2', 'pillow_black.gif', '');
INSERT INTO `values` VALUES (null, '41', 'Green Pillow', '0.2', 'pillow_green.gif', '');
INSERT INTO `values` VALUES (null, '42', 'Golden Pillow', '0.2', 'pillow_gold.gif', '');
INSERT INTO `values` VALUES (null, '43', 'Blue Pillow', '0.2', 'pillow_blue.gif', '');
INSERT INTO `values` VALUES (null, '44', 'White Pillow', '0.2', 'pillow_white.gif', '');
INSERT INTO `values` VALUES (null, '47', 'Blue Bird Bath', '0.4', 'bath_blue.gif', '');
INSERT INTO `values` VALUES (null, '48', 'Green Bird Bath', '0.4', 'bath_green.gif', '');
INSERT INTO `values` VALUES (null, '49', 'Grey Bird Bath', '0.4', 'bath_grey.gif', '');
INSERT INTO `values` VALUES (null, '50', 'Red Bird Bath', '0.4', 'bath_red.gif', '');
INSERT INTO `values` VALUES (null, '51', 'Aqua Oriental Screen', '1', 'screen_aqua.gif', '');
INSERT INTO `values` VALUES (null, '52', 'Blue Oriental Screen', '1', 'screen_blue.gif', '');
INSERT INTO `values` VALUES (null, '53', 'Green Oriental Screen', '1', 'screen_green.gif', '');
INSERT INTO `values` VALUES (null, '54', 'Grey Oriental Screen', '1', 'screen_grey.gif', '');
INSERT INTO `values` VALUES (null, '55', 'Navy Oriental Screen', '1', 'screen_navy.gif', '');
INSERT INTO `values` VALUES (null, '56', 'Pink Oriental Screen', '1', 'screen_pink.gif', '');
INSERT INTO `values` VALUES (null, '57', 'Purple Oriental Screen', '1', 'screen_purple.gif', '');
INSERT INTO `values` VALUES (null, '58', 'Red Oriental Screen', '1', 'screen_red.gif', '');
INSERT INTO `values` VALUES (null, '59', 'White Oriental Screen', '1', 'screen_white.gif', '');
INSERT INTO `values` VALUES (null, '60', 'Yellow Oriental Screen', '1', 'screen_yellow.gif', '');
INSERT INTO `values` VALUES (null, '61', 'Aqua Laser Gate', '0.2', 'laser_aqua.gif', '');
INSERT INTO `values` VALUES (null, '62', 'Black Laser Gate', '0.2', 'laser_black.gif', '');
INSERT INTO `values` VALUES (null, '63', 'Blue Laser Gate', '0.2', 'laser_blue.gif', '');
INSERT INTO `values` VALUES (null, '64', 'Green Laser Gate', '0.2', 'laser_green.gif', '');
INSERT INTO `values` VALUES (null, '65', 'Pink Laser Gate', '0.2', 'laser_pink.gif', '');
INSERT INTO `values` VALUES (null, '66', 'Purple Laser Gate', '0.2', 'laser_purple.gif', '');
INSERT INTO `values` VALUES (null, '67', 'Red Laser Gate', '0.3', 'laser_red.gif', '');
INSERT INTO `values` VALUES (null, '68', 'Violet Laser Gate', '0.2', 'laser_violet.gif', '');
INSERT INTO `values` VALUES (null, '69', 'White Laser Gate', '0.2', 'laser_white.gif', '');
INSERT INTO `values` VALUES (null, '70', 'Yellow Laser Gate', '0.3', 'laser_yellow.gif', '');
INSERT INTO `values` VALUES ('', '1', 'Throne', '1', 'throne.gif', '');
INSERT INTO `values` VALUES ('', '2', 'DJ Turntable', '1', 'deck.gif', '');
INSERT INTO `values` VALUES ('', '3', 'Dino Egg', '0.5', 'dino.gif', '');
INSERT INTO `values` VALUES ('', '4', 'Boy Holo', '3', 'hologirl.gif', '');
INSERT INTO `values` VALUES ('', '5', 'Girl Holo', '3', 'holopod.gif', '');
INSERT INTO `values` VALUES ('', '6', 'Samovar', '0.25', 'samovar.gif', '');
Badges:
Code:
/*
Navicat MySQL Data Transfer

Source Server         : Habbo
Source Server Version : 50141
Source Host           : localhost:3306
Source Database       : gte

Target Server Type    : MYSQL
Target Server Version : 50141
File Encoding         : 65001

Date: 2016-07-27 09:43:01
*/

SET FOREIGN_KEY_CHECKS=0;

-- ----------------------------
-- Table structure for `badge_shop`
-- ----------------------------
DROP TABLE IF EXISTS `badge_shop`;
CREATE TABLE `badge_shop` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `badge_id` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `description` varchar(255) DEFAULT NULL,
  `cost` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=12 DEFAULT CHARSET=latin1;

-- ----------------------------
-- Records of badge_shop
-- ----------------------------
INSERT INTO `badge_shop` VALUES ('1', 'GM1', 'Diamond', 'A nice looking Gem!', '2');
INSERT INTO `badge_shop` VALUES ('2', 'GM2', 'Emerald', 'A nice looking Gem!', '2');
INSERT INTO `badge_shop` VALUES ('3', 'GM3', 'Sapphire', 'A nice looking Gem!', '1');
INSERT INTO `badge_shop` VALUES ('4', 'GM4', 'Ruby', 'A nice looking Gem!', '1');
INSERT INTO `badge_shop` VALUES ('5', 'ZZZ', 'Sulake', 'A secret test badge', '1');
INSERT INTO `badge_shop` VALUES ('6', 'BOT', 'Bot', 'For people with a robotic personality', '3');
INSERT INTO `badge_shop` VALUES ('7', 'FAN', 'Fan', 'I wear this badge to show support for Flow', '3');
INSERT INTO `badge_shop` VALUES ('8', 'UK1', 'Infobus', 'Long live the Infobus!', '5');
INSERT INTO `badge_shop` VALUES ('9', 'UK006', 'Childline', 'I support the efforts of Childline', '2');
INSERT INTO `badge_shop` VALUES ('10', 'Z26', 'King', 'The royal King of Flow!', '4');
INSERT INTO `badge_shop` VALUES ('11', 'Z27', 'Queen', 'Worship me, subjects!', '4');
I like the color scheme on this. It's a nice mesh on the buttons and headers. Kudos to you, sir.
 

Joe

Well-Known Member
Jun 10, 2012
4,090
1,918
Looks alright, there's a lot of themes out there like this. I've released things like this so I guess I can't criticize too much! Good job :)
 

Mrmoseby

Active Member
Jul 1, 2016
142
51
, have tried fixing it myself but I can see any problems in the code? Please help :) Otherwise everything looks great.
 

Users who are viewing this thread

Top