Forum Replies Created
-
AuthorPosts
-
nesciensMember
I’m just reporting that Catch Everest looks bad when Firefox’s default font size is set to anything that is not 16px or when Firefox’s minimum font size is set to anything bigger than 10px.
I believe this is a minor bug and should be fixed. Since I couldn’t find a bugtracker, I posted here.
The child theme is a workaround.
Dumping everything in my child theme’s style.css does not work.
nesciensMember@sakin: Here are some fresh WordPress 3.5.2 installs:
http://www.ixsop.nl/ce1/vanilla/
http://www.ixsop.nl/ce1/a/
http://www.ixsop.nl/ce1/b/
http://www.ixsop.nl/ce1/c/Vanilla is just Catch Everest. At http://www.ixsop.nl/ce1/vanilla.png there is a screenshot. Notice the white next to the Mount Everest picture and the scrollbars. This is taken with Firefox with minimum font size set to 12px (in Preferences -> Content -> Fonts & Colors -> Advanced -> Minimum font size).
A is the same as Vanilla, except that I added “html { font-size: 15px; }” to the custom css theme options, so that you do not have to go into your browser’s settings to see the effects. There is a screenshot at http://www.ixsop.nl/ce1/a.png . This CSS corresponds to setting the default font size to 24px (in Firefox at Preferences -> Content -> Fonts & Colors -> Size). (In Catch Everest’s style.css there is “html { font-size: 62.5%; }” and we have 62.5%*24px = 15px.)
B is A with my CSS all in style.css as suggested. This works fine as long as responsive.css does not kick in: http://www.ixsop.nl/ce1/b-normal.png . Things, however, go wrong again when the screen-width goes above 1190px or below 1060px: http://www.ixsop.nl/ce1/b-resp1.png and http://www.ixsop.nl/ce1/b-resp2.png . The problem is that my style.css in linked in the html before Catch Everest’s responsive.css is linked:
<link rel='stylesheet' id='style-css' href='http://www.ixsop.nl/ce1/b/wp-content/themes/child/style.css?ver=3.5.2' type='text/css' media='all' />
<link rel='stylesheet' id='catcheverest-responsive-css' href='http://www.ixsop.nl/ce1/b/wp-content/themes/catch-everest/css/responsive.css?ver=3.5.2' type='text/css' media='all' />
C is A with my CSS arranged as I originally posted. As far as I can see it works correctly: http://www.ixsop.nl/ce1/c-normal.png , http://www.ixsop.nl/ce1/c-resp1.png , and http://www.ixsop.nl/ce1/c-resp2.png .
(Well, actually the text in the slider can overlap with the menu in all cases, but I would argue that that is because 24px is a rather extreme setting, as 16px is standard.)
nesciensMemberIn version 1.1.2, the definition of catcheverest_post_sliders is wrapped in “if ( ! function_exists( ‘catcheverest_post_sliders’ ) )”, so you can replace it by your own function in a child theme.
That is, just copy that function to your child’s functions.php and add in the extra line from the original post. (I added the slightly different line “‘post_type’ => ‘any’,”, so that a custom post type from a plugin also works.)
Would be nice to have that line in the next version though.
-
AuthorPosts