acub
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] logo wrong place internet explorForum: Themes and Templates
In reply to: [Customizr] logo wrong place internet explorThere is no way the code above affects the hover effect on .round-div. You can test that by removing my code.
It must have been something else you did.
But I guess it could be made more specific, to make sure it only applies to header. Please update the code to this:
@media (min-width: 979px) and (max-width: 1068px) { body.ie .row-fluid .span9.navbar-wrapper {width: 72%;} }Forum: Themes and Templates
In reply to: [Customizr] logo wrong place internet explorThe problem seems to occur only in IE on browers widths between 979px and 1068px. This CSS should fix it, until next version:
@media (min-width: 979px) and (max-width: 1068px) { body.ie .row-fluid .span9 {width: 72%;} }Forum: Themes and Templates
In reply to: [Customizr] Increase limit of 200 chars featured text excerptYou can see a test here. I have set the excerpt manually and no matter what limit I set for excerpts they are always shown exactly as I set them in the post’s edit screen.
I can only guess you have a filter/limitation set by some plugin or some snippet you applied that limits the length of your manual excerpts. Try to disable any snippets/plugins related to excertps and see if that fixes it. Also, you might want to change the setting from Dashboard > Settings > Reading. That setting normally only applies to feeds.
Other than that, I’m all out of ideas. Normally, if you install the theme clean and set the excerpt manually to a post/page/custom-post-type it will display exactly as you set it, regardless of WP’s limit on excerpts.
Forum: Themes and Templates
In reply to: [Customizr] Full width logo@dburkhart, I appreciate your helpful intentions, but the outcome is opposite to your intentions. You are giving false information:
This theme only supports a logo width of up to 250px and is not intended to be centered.
, which ultimately drives people away from using the theme. Also, the
img { width: auto; width: auto\9; }
is way too general to be of any use. It has the potential to mess up the images behaviour throught the website. You need to use more precise selectors in your CSS, especially if you’re giving advice to others.
@katanaz: this might help you:
http://www.themesandco.com/snippet/center-header-block-items/If it doesn’t, I need a link to your website to deliver a customized solution.
Forum: Themes and Templates
In reply to: [Customizr] logo wrong place internet explorYou seem to report this issue like it’s a general problem of the theme. Well, I can assure you it’s not. Check out for yourself at the official demo website of the theme.
In order to debug this, we need to either reproduce it or take a look at the website you’re building on. So please provide the following info:
1. A link to your website.
2. The version(s) of IE in which the problem occurs.Forum: Themes and Templates
In reply to: [Customizr] Increase limit of 200 chars featured text excerptThe limit is not 200, but 55. If you want to raise it to any number, use the snippet you linked, but change 200 to whatever you want.
The limit you set only applies to the auto-generated excerpts. You can always set your own unlimited excerpt, with full html. Just go to screen options (up right corner) in any post’s edit page and check Excerpts. The Excerpt metabox will appear somewhere under the content metabox and you’re free to input anything there. If you want to enable excerpts for pages (or any custom post type), use this code for each post type you want to excerpts for, in your child theme’s functions.php (change “page” to whatever you need):
add_post_type_support( 'page', 'excerpt' );More details here.
Google this string:
inurl:category+archives “[theme:customizr]” site:wordpress.org/support/topic
Forum: Themes and Templates
In reply to: [Customizr] Trying to display Entypo font iconsThere’s no mystery. Browsers use their own cache in order to be fast and your stylesheet was already cached.
Make a habit of force-refreshing a page when testing code mods.
Windows: ctrl + F5
Mac/Apple: Apple + R or command + R
Linux: F5If your issue is resolved please mark it accordingly. Thank you.
Forum: Themes and Templates
In reply to: [Customizr] Change default image (notebook looking thing)The only problem I had was not understanding where you want the custom image and where not. If you say you want the icons on all pages except homepage and article pages, here’s what you need to replace the above code with:
body.page:not(.home) #main-wrapper .format-icon { position: relative; padding-left: 50px; } body.page:not(.home) #main-wrapper .format-icon:before { content: " "; opacity: 1; position: absolute; left: 0; top: 0; width: 40px; height: 40px; display: block; background-image: url("http://localhost:8888/sitename/wp-content/uploads/2013/11/bslogo40x40_on_grey.png"); background-repeat:no-repeat; }Forum: Themes and Templates
In reply to: [Customizr] 2 languages in a websiteI’t qTranslate, not qtranslator.
Forum: Themes and Templates
In reply to: [Customizr] Trying to display Entypo font icons@sevar: It works for me in both Chrome and Firefox. You might have missed a detail. Link please?
@jean-claude Martin: please open your own thread for your problem.
Forum: Themes and Templates
In reply to: [Customizr] Link style posts incorrectly styling share textif this is the correct identifier, than all you need to add in CSS is:
article.format-link .entry-content .really-simple-share a:after { content: none; }3.0.14 is qTranslate compatible, no need to edit anything. This topic is now obsolete, I have re-written the code and nikeo has finalized it and it’s now integrated with Customizr.
Forum: Themes and Templates
In reply to: [Customizr] Change default image (notebook looking thing)If you want to narrow down the cases on which .format-icon applies, just declare them more specific. For example, if you only want them on homepage add body.home in front of .format-icon:
body.home .format-icon { /*set of rules here*/ }WP applies classes to the body element and enables you to customize the look of about anything (pages, posts, search results, custom post types, categories, author pages, archives and more…).