• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

AAC Shop gesior -> Shop znoteAAC

roriscrave

Advanced OT User
Joined
Dec 7, 2011
Messages
1,188
Solutions
34
Reaction score
200
Hi! i used this shop gesior:
1568130258540.png

Znote shop:
1568130392026.png

How do i make the znote shop look the same as gesior's?
In znote if i click in this part, not change:
1568130534550.png
separated by tabs (items, vocations, special items, etc etc)
 
Somewhere in your layout folder there is a .css file (usually called style.css).

Add these rules to the bottom of the file:
CSS:
/* Menu bar style */
#categoryNavigator {
  background-color: #555555; /* dark gray color */
  max-width: 650px;
  margin-top: 20px;
}

/* Menu text style */
#categoryNavigator a {
  color: white;
  font-weight: bold;
  padding: 10px 15px;
  display: inline-block;
  text-decoration: none;
  border-right: 1px solid #E5E5DB;
}

/* Menu text style when you hover your mouse over text */
#categoryNavigator a:hover {
  background-color: #ad7400; /* pirate gold color */
}

And adjust the color values to fit your layout.

Look up hex color codes here: Color Hex Color Codes (https://www.color-hex.com/)

Do CTRL + F5 when reloading webpage to reload the css changes.
 
Somewhere in your layout folder there is a .css file (usually called style.css).

Add these rules to the bottom of the file:


And adjust the color values to fit your layout.

Look up hex color codes here: Color Hex Color Codes (https://www.color-hex.com/)

Do CTRL + F5 when reloading webpage to reload the css changes.

thanks for answering but i think i expressed myself bad.
Why when I click on any of these buttons nothing happens?
All items are always shown. this was my doubt
1568244590070.png
 
Back
Top