acub
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Featured images are all squaresA link would be helpful.
Forum: Themes and Templates
In reply to: [Customizr] menu hover snippet broken in mobile screensI looked a bit further into your website. I think a plugin called dropdown-menu-widget is at fault here. Try disabling it and see if it solves your problem.
Forum: Themes and Templates
In reply to: [Customizr] menu hover snippet broken in mobile screensplease let me know if this test installation is working for you.
I think I know why it’s not working. Your parent doesn’t seem to have a proper link (#). It’s just a placeholder. My solution referrs to cases when you actually want to preserve the link to a parent page. If you want to use placeholders, you don’t need this snippet.
Forum: Themes and Templates
In reply to: [Customizr] Move Social Icons To Right Side of HeaderOpen your own thread, JodieRD. No one will answer a question in another question on this forum, even if they are related.
If I tell you how to center the header social media in a topic named “Move Social Icons To Right Side of Header” 90% of the users who want the same thing will never find it.
Forum: Themes and Templates
In reply to: [Customizr] Padding textThe real problem is we can’t look at your page. I look at your element, I inspect it in chrome, try some CSS out until I get whatever I want done. Than I copy/paste the code.
Normally we shouldn’t even answer requests for websites we can’t see. There’s room for too much misunderstanding.
Plus, when I’m able to look at the page I am sometimes able to spot the real source of the problem. For example I could examine your CSS and see if there are any errors in it that might render some extra code useless, etc…
Forum: Themes and Templates
In reply to: [Customizr] menu hover snippet broken in mobile screensThat snipped was altered due to some changes on how code was displayed on themesandco.com. Please try to reapply it now.
Forum: Themes and Templates
In reply to: [Customizr] Deleted image shows up as featured imageYou need to set the new image as featured image of the page and it will show up on first page correctly. If all else fails, just delete the old image from Media and load the new one as featured image of the page. Featured image is somewhere in the right-bottom part of the page edit screen.
Forum: Themes and Templates
In reply to: [Customizr] Change default image (notebook looking thing)Oops. My bad.
But I’m glad I was in the wrong here, as it proves a good point: no one knows all of CSS by heart and no one needs to. One just needs to look it up. 🙂Besides, there’s always the validation phase, where you spot typos and other minor mistakes.
Forum: Themes and Templates
In reply to: [Customizr] Downloadable Child theme?No, you do it manually, using phpMyAdmin (which normally is provided by your hosting provider, in cPanel). The url is in wp_options panel, first row. It’s the only thing you need to manually change through phpmyadmin.
For example, you don’t need to change it manually if you use WordPress’s import and export.Over the years i have moved a few websites from dev to public. I moved them in different ways, using various tools, WP export&import included. In some cases I had problems (with attachments, encoding, urls, permalinks…). All fixable, but they still needed further actions from me. The solution above is the one I used lately, as it’s error free and doesn’t take a lot of time. The worst thing that can happen is ftp transfer interruption.
Forum: Themes and Templates
In reply to: [Customizr] Padding textIt’s working on a clean install of the theme, so the reason why it’s not working for you must reside in either a plugin you installed or some custom mods you’ve made.
Here’s a test, with 80%.
Or maybe you just placed the code after an unclosed CSS declaration and is simply not read by the browser as a declaration. Or maybe you pasted it inside a media query that’s not applied to your screen resolution?Forum: Themes and Templates
In reply to: [Customizr] Change default image (notebook looking thing)Have you considered using the background-repeat property?
background-repeat: none;More cool background props here.
Forum: Themes and Templates
In reply to: [Customizr] Multilingual front page: slider and featured contentIf you have qT installed the length limitations for titles and descriptions and other fields are multiplied by the number of installed languages and it displays correct language if you use qTranslate shortcodes: [:en] English Text[:ro]Romanian Text[:fr]French text, etc…
Forum: Themes and Templates
In reply to: [Customizr] Padding textAdd this to your custom CSS:
@media (min-width: 768px) { #content.article-container article.row-fluid { width: 95%; } }Change 95% to whatever you want, but keep it percentual.
Forum: Themes and Templates
In reply to: [Customizr] Problem with Logo & top barIf you want to remove that line:
footer#footer { border: none;}If you want to change it, change none with whatever you want. Consider reading this beforehand. There is also a list of all CSS border properties further down that page, which might come in handy.
Forum: Themes and Templates
In reply to: [Customizr] Multilingual front page: slider and featured contentI’ve never used multilingual and I suppose you should look over some docs on how to make themes/plugins work with it (they should have this on their website).
However, what I can tell you for sure is that starting with 3.0.14 Customizr will be qTranslate ready out of the box. So you might give qT a spin if multilingual is optional in your case. If not, you should first ask on the plugin’s forum and get back here with their recommendations.