Re: [mezzanine-users] Re: Something wrong with default theme?

2014-04-29 Thread Niels Jakob Buch
Putting in the top-padding to 100px in the mezzanine.css did the job. 
Thanks for helping me out :-)


-- 
You received this message because you are subscribed to the Google Groups 
Mezzanine Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[mezzanine-users] Re: Something wrong with default theme?

2014-04-24 Thread Niels Jakob Buch


https://lh3.googleusercontent.com/-cyvRhiGpg8s/U1irjwpPwgI/D6Y/QKY7B62MBCY/s1600/mezztheme.PNG
Here is a screenshot, where you can only see a few pixels of the header on 
the page 

On Wednesday, 23 April 2014 22:04:37 UTC+2, Niels Jakob Buch wrote:

 I am now getting really happy with my mezzanine sites.

 But there is one thing that really puzzles me, the default theme is not 
 working really well.

 I was expecting the theme to be responsive, but it only works on certain 
 screen sizes, on my screen size the header of the page and warning message 
 disappears under the menu in the top.

 Am I using the wrong theme, or is the theme just a draft, that needs some 
 polish before being usable?

 To try it, just take a clean mezzanine project, grab your mouse and resize 
 your window, and you will see that on certain screen sizes, the header is 
 hidden.

 Thanks for your great work..


-- 
You received this message because you are subscribed to the Google Groups 
Mezzanine Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [mezzanine-users] Re: Something wrong with default theme?

2014-04-24 Thread Mehmet Özgür Bayhan
This is because top empty space(under header) 's height  is static, not
depending on the header's height. It is a bug i think...


2014-04-24 9:13 GMT+03:00 Niels Jakob Buch njb...@gmail.com:


 https://lh3.googleusercontent.com/-cyvRhiGpg8s/U1irjwpPwgI/D6Y/QKY7B62MBCY/s1600/mezztheme.PNG
 Here is a screenshot, where you can only see a few pixels of the header on
 the page


 On Wednesday, 23 April 2014 22:04:37 UTC+2, Niels Jakob Buch wrote:

 I am now getting really happy with my mezzanine sites.

 But there is one thing that really puzzles me, the default theme is not
 working really well.

 I was expecting the theme to be responsive, but it only works on certain
 screen sizes, on my screen size the header of the page and warning message
 disappears under the menu in the top.

 Am I using the wrong theme, or is the theme just a draft, that needs some
 polish before being usable?

 To try it, just take a clean mezzanine project, grab your mouse and
 resize your window, and you will see that on certain screen sizes, the
 header is hidden.

 Thanks for your great work..

  --
 You received this message because you are subscribed to the Google Groups
 Mezzanine Users group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to mezzanine-users+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.


-- 
You received this message because you are subscribed to the Google Groups 
Mezzanine Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[mezzanine-users] Re: Something wrong with default theme?

2014-04-24 Thread Eduardo Rivas
Well, I wouldn't call it a bug, it is just a limitation of Bootstrap not 
knowing how wide your navbar needs to be. From 
http://getbootstrap.com/components/#navbar:

Since Bootstrap doesn't know how much space the content in your navbar 
 needs, you might run into issues with content wrapping into a second row.


That's exactly what's happening here. It's up to the developer to provide 
for cases such as this. You can check out the linked document for some 
potential fixes, or come up with your own. If you know your navbar will 
always be too wide to fit in a single row, just add body {padding-top: 
100px;} to your site's CSS (default padding-top is 50px). A more robust 
approach would require media queries to add  the extra padding, or some 
Javascript that computes the body padding based on navbar height on every 
window resize event. Note sure if Steve would like to add something like 
that to the core.

-- 
You received this message because you are subscribed to the Google Groups 
Mezzanine Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [mezzanine-users] Re: Something wrong with default theme?

2014-04-24 Thread Stephen McDonald
The intention's to rip the layout up with your own design - so like Ed said
it's really not a big deal.

Still if someone wants to resolve this in a simple enough way then by all
means go ahead.


On Fri, Apr 25, 2014 at 12:04 AM, Eduardo Rivas jerivasmel...@gmail.comwrote:

 Well, I wouldn't call it a bug, it is just a limitation of Bootstrap not
 knowing how wide your navbar needs to be. From
 http://getbootstrap.com/components/#navbar:

 Since Bootstrap doesn't know how much space the content in your navbar
 needs, you might run into issues with content wrapping into a second row.


 That's exactly what's happening here. It's up to the developer to provide
 for cases such as this. You can check out the linked document for some
 potential fixes, or come up with your own. If you know your navbar will
 always be too wide to fit in a single row, just add body {padding-top:
 100px;} to your site's CSS (default padding-top is 50px). A more robust
 approach would require media queries to add  the extra padding, or some
 Javascript that computes the body padding based on navbar height on every
 window resize event. Note sure if Steve would like to add something like
 that to the core.

 --
 You received this message because you are subscribed to the Google Groups
 Mezzanine Users group.
 To unsubscribe from this group and stop receiving emails from it, send an
 email to mezzanine-users+unsubscr...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.




-- 
Stephen McDonald
http://jupo.org

-- 
You received this message because you are subscribed to the Google Groups 
Mezzanine Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[mezzanine-users] Re: Something wrong with default theme?

2014-04-23 Thread Eduardo Rivas
Hi Niels. Could you please elaborate on what you mean with the header is 
hidden? Mezzanine uses Bootstrap 3 to theme the frontend, and is 
configured to collapse the navigation on small screens, creating a new 
button where you can toggle the navigation. Additionally, the site tagline 
(the string that says: An open-source content management system) is 
hidden in narrow screens, but the site title is always kept visible.

You can learn more about Bootstrap, and specifically about the grid options 
and breakpoints at: http://getbootstrap.com/css/#grid-options

-- 
You received this message because you are subscribed to the Google Groups 
Mezzanine Users group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mezzanine-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.