creaky

Customer
I'm currently using a text based logo which is having an issue not being responsive. If you narrow the screen down the logo wraps down to the next line. Is there any way of making the text smaller on resize?

logo.PNG

I'm using the Showcase addon on the site, on forums that have showcase enabled the New Thread & Create showcase buttons seem to be merged together. I assume some padding or a margin would seperate them.

buttons.PNG

Lastly the when a drop down is showing and you move your mouse away from the heading you can no longer see the text. Which style property controls that?

hover.PNG

If it helps the site is here http://www.behindthegoal.net/
 
Text based logo won't resize automatically but you can fix it with a simple CSS media query:

Code:
.forum_view .callToAction {
margin-left: 10px;
}
@media (max-width:@maxResponsiveNarrowWidth)
{
.XenBase #logo a { font-size: 30px;}
}
@media (max-width:320)
{
.XenBase #logo a { font-size: 20px;}
}

Reduces the size as the screen gets smaller, should fit in fine, I've also included a possibly fix for those buttons colliding.

For the nav check:

Style Properties -> Header and Navigation ->Nav Tab Popup Open
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back