riley454
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Child theme .css not workingBTW I’ve been using the child theme from the customizr website with quite a few customizr themed sites for several years and never had this problem. In fact I use almost this identical code on 2 other sites in the child theme without issues.
Forum: Themes and Templates
In reply to: [Customizr] Child theme .css not workingThe contact form in the sidebar is what I am formatting. CSS currently is in child theme and is not working. When I transfer it to Additional CSS it works. I think the custom CSS you may see is the default CSS of the contact form plugin over-riding the standard Customizr settings.
I’ve cleared all caches: W3, browser and host.
This is the custom CSS that I’m using and works only in Additional CSS
.wpcf7-form { background-color: #27cda5; border-radius: 10px; border: 2px solid gray; padding-left: 10px; padding-top: 10px; line-height: 4px; } .wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 textarea { border-radius: 7px; width: 90%; } input.wpcf7-form-control.wpcf7-submit { background: #008B8B; margin-left: auto; margin-right: auto; width: 90%; }
Forum: Themes and Templates
In reply to: [Customizr] Social Icons Not VisibleCan anyone tell me how this was resolved.
I’m having the same problem, social icons are not visible. Doesn’t matter where I select them to be shown.Forum: Themes and Templates
In reply to: [Customizr] Header imageIf you mean for your site logo
Appearance -> Customize -> Global setting -> Site Identity
You can upload your logo thereForum: Plugins
In reply to: [Fast Secure Contact Form] welcome intro html being ignoredThanks for your input Mike, I see what has happened.
The widget has automatic <p> tags option checked and has put them in the wrong place. I’ve disabled auto paragraph and used other html to get the formatting result I’m after and all is well.
Thanks for pointing that out as I completely missed it as a cause. As suspected theres nothing wrong with your product.
Keep up the good work and thanks for a great plugin
Forum: Plugins
In reply to: [Fast Secure Contact Form] welcome intro html being ignoredI have W3 total cache and my webhost has a caching function in their plugin. I have cleared all caches as far as I know. There was another plugin that was causing other css conflicts that were ok after I had removed it, but this issue still remains
Forum: Themes and Templates
In reply to: [Customizr] Logo size for mobile devicesIs there a recommended logo size? If I remember correctly in earlier versions of Customizr it was 150×150. Is this still the case or is there a more appropriate size for the curent version?
Forum: Themes and Templates
In reply to: [Customizr] Is my tagline affecting SEO?Thanks for your advice Menaka.
This is relating to the Customizr theme where the tagline is shown on every page in the header of my website where some other themes do not. Whilst I am referring to SEO, my enquiry is how to make the best use of the tagline in my Customizr theme.
Should I avoid using the tagline for conflicting SEO terms or is there some coding I can use in my child theme to have a different tagline on each page?
Forum: Themes and Templates
In reply to: [Customizr] Add phone number to navbarNo worries @fish and you simply use the ‘Text’ widget which allows you to add html to style your text any way you want it.
Forum: Themes and Templates
In reply to: [Customizr] Slider text not showing on smaller screenAhh OK thanks for that. Many of my clients use iPads so I will change it to 767 to avoid issues.
Forum: Themes and Templates
In reply to: [Customizr] Add phone number to navbarThe PHP is very similar to several other snippets already listed on the theme site. Using this code will place a widget above the navbar and the result for you may depend on other formatting you have already done in this area.
// Creates an extra widget area. if (function_exists('register_sidebar')) { register_sidebar(array( 'name' => 'Extra Header Widget Area', 'id' => 'extra-widget-area', 'description' => 'Extra widget area before the navbar', 'before_widget' => '<div class="widget my-extra-widget">', 'after_widget' => '</div>', 'before_title' => '<h2>', 'after_title' => '</h2>' )); }
The next part tells Customizr where to place the widget. Simply change “before_navbar” to ‘before’ or ‘after’ the area you want it.
Read Hooks API// Tells Customizr where to place the widget area add_action ('__before_navbar', 'add_my_widget_area', 10); function add_my_widget_area() { if (function_exists('dynamic_sidebar')) { dynamic_sidebar('Extra Header Widget Area'); } }
Forum: Themes and Templates
In reply to: [Customizr] Add phone number to navbarThanks @stella and Dave. I learnt something from both of your suggestions and came up with my own version of a combination of them after lots of trial and error. I’m very happy with the result and didn’thave to worry about reformatting anything else to accomodate it.
Let me know Dave if you want me to list the code(PHP and widget HTML) for the benefit of others or as an addition to the snippets you referred to.
Forum: Themes and Templates
In reply to: [Customizr] Slider text not showing on smaller screenWhat does this bit of code actually do and does it matter if I leave it at 800?
Forum: Themes and Templates
In reply to: [Customizr] Slider text not showing on smaller screenI found it works well for me at 800px on my laptop. 600 didn’t seem to change anything and 700/750 worked until I resized to half screen width then the text disappeared until I made it another inch smaller then it came back.
Hope this is useful to you for further reference and thanks for the ongoing help.
Forum: Themes and Templates
In reply to: [Customizr] Add phone number to navbarThanks @stella it appears your reply crossed the line just before mine. That looks like it will be what I need.