We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Template Styling | Forum

Topic location: Forum home » Development » Themes
Keelan Leader
Keelan Oct 13 '11
So im not sure why but as you can see the arrow under the nav is out of place, i haven't edited any files but i re uploaded the template anyways and it still look like that. I not sure why, anybody replicate or come across this before?
Attachments:
  error-temp.png (3.16Kb)
Keelan Leader
Keelan Oct 13 '11
If anyone has this issue this is the fix, edit base.css

/* ---- Main Menu styles ---- */

.ow_main_menu{
position: absolute;
bottom: -37px;
right: 0px;
    z-index: 1;
}

.ow_main_menu li{
    float: left;
    padding: 0;
}

.ow_main_menu li a{
    color: #666; /** OW_Control type:color, key:menuColor, section:2. Colors, label:Menu item text color **/
    display: block;
    padding: 0 7px 30px 7px;
    text-decoration: none;
text-shadow: #fff 0 1px 0;
}

The Forum post is edited by Keelan Oct 13 '11
Den Team
Den Oct 13 '11
Topic was moved from General Questions.
FaceTester Leader
FaceTester Oct 13 '11
i dont see anything is failed..

i see the same position (now on 5 different browser)

have you in /ow_includes/config.php the DEV Mode enabled ?

greets
FaceT
The Forum post is edited by FaceTester Oct 13 '11
Attachments:
  oxwall-arrowbrowserbig.jpg (321.2Kb)
Keelan Leader
Keelan Oct 14 '11
I did before i posted this and turned it off but it still was like it was with dev mode on.

if ( defined('OW_CRON') )
    define('OW_DEBUG_MODE', fasle);
    define('OW_DEV_MODE', false);
    define('OW_PROFILER_ENABLE', false);
else 
    /**
    * Make changes in this block if you want to enable DEV mode and DEBUG mode
    */
    
    define('OW_DEBUG_MODE', false);
    define('OW_DEV_MODE', false);
    define('OW_PROFILER_ENABLE', false); 
}


I fixed it with edited the style sheet but i don't see why it doesn't work after i turned dev and debug mode off. Also tried multiple browsers.
The Forum post is edited by Keelan Oct 14 '11