acub
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] My site in IE8 isn't reponsiveI now see my echo was missing the trailing “;”. Maybe I should only answer tickets when I’m fresh. 🙂
Forum: Themes and Templates
In reply to: [Customizr] Move navbar menu below sliderThis is no simple task, because the theme is responsive. So the first question would be: what would happen to the logo? Would it remain above the slider or would it move below it, with the navabr? Or would you have it floating over the slider, left aligned on wide displays and centered above the slider on narrower ones? Another question involves the tagline on narrow screens. Should it remain below the logo or do you want it moved with the navbar?
Forum: Themes and Templates
In reply to: [Customizr] Need to half the carousel image slidernishanth, my personal opinion is that your approach is conflicting basic web principles and concepts. The general idea behind websites is that they can deliver messages efficiently through the use of different standardized technologies to a lot of devices used by people with different needs. If you want to cycle text in your slider, do not make images of text, use text instead and style it up with CSS. It will be loaded a lot faster, it will be indexed by search engines and visually impaired people will be able to read it, too.
Maybe, in your particular case, it would be better to dump the Customizr slider and use a custom (plugin) slider that could feature yout texts and/or images in a more suitable way. This way you could control all that first-page real estate you are now wasting for images of unindexable text.
Forum: Themes and Templates
In reply to: [Customizr] How to remove this button like thing ?Add this to you custom CSS panel:
#content article.page .format-icon:before { content: none; }Forum: Themes and Templates
In reply to: [Customizr] Slider overlaps a sidebarOn line 237 of your child theme’s style.css you have put:
.carousel { margin: 0 auto; width: 460px; }Change width to auto and it won’t overlap anymore.
Forum: Themes and Templates
In reply to: [Customizr] Remove icon next to page titleAdd this to your custom CSS:
#content article.page .format-icon:before { content: none; }Forum: Themes and Templates
In reply to: [Customizr] customizing author archive templateNo matter what database you have get used, pppandis, it is recommended that you start your own thread.
Forum: Themes and Templates
In reply to: [Customizr] Ideal image size for Customizr slider?The most important thing with a slider is to have equally sized images, if you want them to look good cross-browsers cross-platforms. I chose 1200 x 500 over 1170 x 500 because it’s easier for clients running sites based on this theme to remember those sizes. If all my clients were tech-savvy i would have probably went for 1170 x 500.
And I don’t think larger images would add anything to the website besides unnecessary pageload time. I think 1170 x 500 is more than enough to make an impression. Just choose your images wisely. 🙂
Forum: Themes and Templates
In reply to: [Customizr] Feedburner HTML where to pasteEDIT: I’m sorry, I just noticed the hook I initially suggested in this comment is also used in another place in the theme and it’s not good. I’ll come up with a code that works after I run a few more tests.
Forum: Themes and Templates
In reply to: [Customizr] Ideal image size for Customizr slider?I personally go with 1200 x 500. On a 1920 x 1080 monitor they render 1905 x 794 and the loss of quality is hardly noticeable (they’re a bit blurred too, and this helps). I wouldn’t go past that since browsing is slowly moving towards smaller screens with bigger resolutions.
Forum: Themes and Templates
In reply to: [Customizr] My site in IE8 isn't reponsiveWell, I thought conditionals work in css too. My bad. They only work in html.
You need this code in functions.php of your child theme:add_action('wp_head', 'add_ie8_custom_css'); function add_ie8_custom_css { echo '<!--[if IE 8]> <link rel="stylesheet" type="text/css" href="'.get_stylesheet_directory_uri().'/ie8-hacks.css" /> <![endif]-->' }Should work now. I’m sorry I can’t test this myself, I don’t have IE lower than 10 here and this type of conditionals do not work in IE10 and above.
Forum: Themes and Templates
In reply to: [Customizr] Ideal image size for Customizr slider?Registered Size Definitions: Array ( [tc-thumb] => Array ( [width] => 270 [height] => 250 [crop] => 1 ) [slider-full] => Array ( [width] => 99999 [height] => 500 [crop] => 1 ) [slider] => Array ( [width] => 1170 [height] => 500 [crop] => 1 ) )Taken from Debug This on a fresh install of Customizr, under Media > Image sizes.
Forum: Reviews
In reply to: [Firelight Lightbox] Selling border-radius :)I underrated it because while most other plugin creators allow their users to input custom css code and easily customize the look and feel of their installation, you have put efforts into obfuscating the code and making it hard for the average user to override your CSS and scripts.
I think it’s a bad decision that hurts your plugin much more than my rating does. And no, I don’t think developers should starve. However, charging people for border-radius seems wrong and against WP basic concepts. But I don’t expect you to know what WP stands for, how it all started and why it got where it is now. You wouldn’t be asking money for adding border-radius to open source libraries if you did.
Forum: Themes and Templates
In reply to: [Customizr] Feedburner HTML where to pasteIt all depends on where you want it to appear on the page, Tradedog.
Forum: Themes and Templates
In reply to: [Customizr] My site in IE8 isn't reponsiveCustomizr is a theme based on web standards and also makes use of a lot of CSS3 properties, which are not all supported by IE8. Unfortunately, even though IE8’s initial marketing slogan was “the first Microsoft web browser to respect web standards”, it didn’t live up to it.
So, basically, you need a responsive theme that only uses CSS 2.1 properties or earlier, and Customizr isn’t one of them. (Actually I don’t think such themes exist, but I might be wrong).
Another option is to create your own ie8-hacks.css in your child theme and use it to modify the looks of the theme in IE8. You’d conditionally load it by placing this code in your child theme’s style.css:
<!--[if IE 8]> @import url("ie8-hacks.css"); <![endif]-->