tomaja
Forum Replies Created
-
Hi darklite,
I suggest to you to read customizr slider documentationForum: Themes and Templates
In reply to: [Customizr] 86 the round images!Try to add this to your custom css
.round-div { border-color: transparent; }Forum: Themes and Templates
In reply to: [Customizr] how add home featured page?I really dont know if I understand your question but if you want more featured pages on front page check this thread
Forum: Themes and Templates
In reply to: [Customizr] Post in categoriesThat option is for feeds, not actual posts. To set lenght of excerpts you can use this snippet
Your custom css code is quite messy, I must say. Your current setting is screen width 984px only and that is not good, you need to set max-width to greater width for your site can to be seen right on greater screens as well. You also need to remove the line
footer#footer {width: 1100px;}because it set footer to be fixed at 1100px
I tried the above code on clean, default install and it works so I guess you need to check your custom css code again and make corrections.Forum: Themes and Templates
In reply to: [Customizr] add a social iconMaybe this snippet will help
Forum: Themes and Templates
In reply to: [Customizr] add 1px sliver to background?Hi 4duckiskand,
you can try to add this code to your custom cssbody { background-image: url('LINK_TO_YOUR_GRADIENT_IMAGE'); background-repeat: repeat; background-position: top left; }Forum: Themes and Templates
In reply to: [Customizr] Posts picture alignmentHi domazone,
what you need is this snippet, especially “Move all images to left” or “Move all images to right” parts.You can try to add this to custom css or to your child theme style.css
@media all and (min-width: 1080px) and (max-width: 1920px) { .tc-header { width: 1170px; margin: 0 auto; } #footer { position: relative; width: 1170px; margin: 0 auto; } }Forum: Themes and Templates
In reply to: [Customizr] Customizr – SearchYou could add and change header.php in your child theme by adding
get_search_form()in the right place for you. You could also do this with function which is, I think, better solution. Also check Codex about this matter.Forum: Themes and Templates
In reply to: [Customizr] Uploading LogoAny luck with this ? Did you check folder premissions ?
Forum: Themes and Templates
In reply to: [Customizr] Footer stick to bottomYou need to remove position option or to make it relative. If you want to center widgets content you can use
footer#footer { text-align: center; }Forum: Themes and Templates
In reply to: [Customizr] Slider Front Page HELPBasically, you need to create a new slider and place it on front page. Check Customizr documentation
Forum: Themes and Templates
In reply to: [Customizr] Call to Action link – tel?You can use the redirection plugin, by creating an empty page which will be redirected to whatever URL you want.You only need to point your slider button to that page.
Forum: Themes and Templates
In reply to: [Customizr] Sticky Header on Android deviceTry to add overflow option, like
.tc-header { background-color: #FFFFFF; position: fixed; top: 0; width: 100%; z-index: 100; overflow: hidden; }Be aware that mobile browsers are not fully compatible with web standards.