Forum Replies Created
-
AuthorPosts
-
August 23, 2014 at 6:46 am in reply to: Where do i Place the coding to make Portfolio Grid Change? #308156
Hello,
Have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueAugust 23, 2014 at 6:42 am in reply to: Using Templatera (visual composer add-on) with Enfold theme builder #308153Hey!
Visual Composer is not officially supported, it may work on regular pages but we can not ensure its full functionality. And no, the advanced layout builder it’s not a modified version of VC.
Regarding making a page with a search in the middle, i suggest using this plugin to get a [search] shortcode so you can accommodate it anywhere you want.
Cheers!
JosueHi!
Yes, it should be 777 or 7777.
Regards,
JosueYou are welcome Ivana, glad to help :)
Regards,
JosueCan you create a mockup of what would you want to achieve?
Best regards,
JosueYou want to keep it this way on all times?
Regards,
JosueHave you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueCan you post a link to the page where these compromised links are?
Regards,
JosueHey!
I’m only noting three columns on desktop, but i guess you are seeing it on a bigger screen (1800width +), you can control the amount of columns by adjusting the code i put in Custom CSS:
@media only screen and (min-width: 1800px){ .responsive.html_stretched .av-masonry-entry{width:16.6% !important;} } @media only screen and (min-width: 989px) and (max-width: 1340px) { .responsive .av-masonry-entry{width:33.3% !important;} } @media only screen and (max-width: 767px) { .responsive .av-masonry-entry{width:100% !important;} } @media only screen and (min-width: 480px) and (max-width: 767px) { .responsive .av-masonry-gallery .av-masonry-entry{width:49.90% !important;} } @media only screen and (max-width: 480px){ .responsive #top .av-masonry-entry{width:100% !important;} } @media only screen and (min-width: 767px) and (max-width: 989px) { .responsive .av-masonry-gallery .av-masonry-entry{width:33.3% !important;} } @media only screen and (min-width: 767px) and (max-width: 989px) { .responsive .av-masonry-entry{width:49.90% !important;} }16.6% is 6 columns, 33.33% is 3 columns, 49.90$ is 2 columns.
Best regards,
JosueNo problem, we’re always glad to help :)
Best regards,
JosueHey!
No, i didn’t touch that. I just applied some custom code in Quick CSS and adjusted the JS code in functions.php. Also, i’m noting only one masonry column on mobile.
Regards,
JosueHey Veronica!
Remove this code from style.css:
#top .header-scrolled .logo a, #top .header-scrolled .logo a img{ max-height: 116px !important; }And add this:
#header_main .container { height: 58px !important; line-height: 58px !important; } div#main { padding-top: 60px !important; }Best regards,
JosueHi!
Try with this:
.av_one_fifth { margin-left: 3% !important; } .av_one_fifth.first{ margin-left: 6% !important; }Best regards,
JosueYou are welcome, glad we could help :)
Regards,
JosueHi Adrian!
I guess you are referring to the back-end view, that’s expected, check if the shortcode renders when seeing the actual slider outside.
Cheers!
JosueHi Raymond!
Not from Enfold or WordPress, that depends on the hosting disk size quota you have contracted.
Regards,
JosueHi!
I can’t see it right now.
Best regards,
JosueYou are welcome, here’s what i did:
- Removed the code in css/custom.css
- Added a custom code in Plugins > Edit Functions (Functionality plugin)
- Reset the blog-style in Theme Options
Regards,
JosueAugust 22, 2014 at 10:06 am in reply to: Only change color of icons in icon list that are in footer? #307735Hi!
Sorry, try this one for the headlines:
#footer .widgettitle{ color: red !important; }Cheers!
JosueHi,
Can you post the link to your website please?
Regards,
JosueHi!
You’d need to remove the Enfold form styling to fix this, open css/base.css and remove from line 184 to line 253:
#top form { margin-bottom: 20px; } #top fieldset { margin-bottom: 20px; } #top .input-text, #top input[type="text"], #top input[type="input"], #top input[type="password"], #top input[type="email"], #top input[type="number"], #top input[type="url"], #top input[type="tel"], #top input[type="search"], #top textarea, #top select { -webkit-appearance: none; border: 1px solid #e1e1e1; padding: 8px 6px; outline: none; font: 13px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif; color: #777; margin: 0; width: 210px; max-width: 100%; display: block; margin-bottom: 20px; background: #fff; border-radius: 0px; } #top input[type="text"]:focus, #top input[type="password"]:focus, #top input[type="email"]:focus, #top input[type="number"]:focus, #top input[type="url"]:focus, #top input[type="tel"]:focus, #top input[type="search"]:focus, #top textarea:focus { box-shadow: 0px 0px 2px 0px rgba(0,0,0,0.2); color: #555; } #top textarea { min-height: 60px; line-height:1.5em;} #top label{ display: block; font-weight: bold; font-size: 12px; } #top legend { display: block; font-weight: normal; font-size: 15px; } #top select { width: 220px; } #top input[type="checkbox"] { display: inline; } #top label span, #top legend span { font-weight: normal; font-size: 13px; color: #444; } #top textarea{width:100%;} #top #wrap_all .valid .text_input, #top #wrap_all .valid .text_area, #top #wrap_all .valid .select{border:1px solid #9AA600;} /*#70A41B*/ #top #wrap_all .error .text_input, #top #wrap_all .error .text_area, #top #wrap_all .error .select{border:1px solid #DF653E;} #top #wrap_all .ajax_alert .text_input, #top #wrap_all .ajax_alert .text_area, #top #wrap_all .ajax_alert .select{border:1px solid #ffb628;} #top #wrap_all .valid .input_checkbox_label{color:#9AA600;} #top #wrap_all .error .input_checkbox_label{color:#DF653E;}Best regards,
JosueAugust 22, 2014 at 9:51 am in reply to: Enfold, Chrome: header leaving residual color on page when scrolling #307718Hey!
Try adding this code to the Quick CSS:
#header_main_alternate, #header { -webkit-transform: translateZ(0); }Cheers!
JosueHi Ivana!
Try disabling the header extra elements in the Theme Options, if that doesn’t work add this to Quick CSS:
div#header_meta { display: none; }Cheers!
JosueHey!
Try adding this code to the Quick CSS:
.single .title_container{ display: none; }Cheers!
JosuePlease don’t create duplicates.
Hello,
Have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueAugust 22, 2014 at 9:46 am in reply to: Only change color of icons in icon list that are in footer? #307710Hi!
Try prefixing the #footer ID to the CSS selector:
#footer .iconlist_icon { background-color: red !important; }Cheers!
JosueHi!
I believe it’s because of the aspect ratio of those images, try uploading images in landscape.
Cheers!
JosueHi Patrick,
Can you please create me an administrator account? post it here as a private reply.
Regards,
Josue -
AuthorPosts
