XF 1.5 image next to navigation (left) and (right)

Senpai

Well-known member
Hey xenforo members , i would like to add an image next to navigation left and right like this

d29fd16d508156182275394948f56f8a.png


i researched and got this code but when i put it in templets : navigation.css nothing really happens or im not exacly sure if im suppose to add it in navigitaion


Code:
.navL {
    float: left;
    width: 115px;
    height: 90px;
    background-image: url(http://actiongamerz.com/boards/styles/images/navL.png);
    background-repeat: no-repeat;
 
Something like

Code:
background: url("/styles/your style/nav_left.gif") 0 0 no-repeat, url("/styles/your style/nav_right.gif") 100% no-repeat, url("/styles/your style/tile_nav.gif") 0 0 repeat-x;
 
Top Bottom