Forum Replies Created

Viewing 30 posts - 13,441 through 13,470 (of 23,923 total)
  • Author
    Posts
  • Hi!

    Install this plugin and then put the code in Plugins > Edit Functions.

    Regards,
    Josue

    in reply to: Cannot Edit Page #308155

    Hello,

    Have you tried disabling all third-party plugins to see if it gets fixed?

    Regards,
    Josue

    Hey!

    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!
    Josue

    in reply to: Logo in Mobile format Is Stretched #308119

    Hi!

    Yes, it should be 777 or 7777.

    Regards,
    Josue

    in reply to: Black margin above header #308115

    You are welcome Ivana, glad to help :)

    Regards,
    Josue

    in reply to: Force logo to break out #308114

    Can you create a mockup of what would you want to achieve?

    Best regards,
    Josue

    in reply to: Force logo to break out #308102

    You want to keep it this way on all times?

    Regards,
    Josue

    in reply to: Masonry Blog Columns #308100

    Have you tried disabling all third-party plugins to see if it gets fixed?

    Regards,
    Josue

    in reply to: Masonry Blog Columns #308092

    Can you post a link to the page where these compromised links are?

    Regards,
    Josue

    in reply to: Masonry Blog Columns #308081

    Hey!

    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,
    Josue

    in reply to: Layer Slider #308079

    No problem, we’re always glad to help :)

    Best regards,
    Josue

    in reply to: Masonry Blog Columns #308074

    Hey!

    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,
    Josue

    in reply to: Force logo to break out #308069

    Hey 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,
    Josue

    in reply to: Enfold > one fifth column > margin #308058

    Hi!

    Try with this:

    .av_one_fifth {
        margin-left: 3% !important;
    }
    .av_one_fifth.first{
        margin-left: 6% !important;
    }

    Best regards,
    Josue

    in reply to: Button at bottom of full screen slider #308048

    You are welcome, glad we could help :)

    Regards,
    Josue

    in reply to: Layer Slider #308042

    Hi 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!
    Josue

    in reply to: Add background image on 1 page #308027

    Hi Raymond!

    Not from Enfold or WordPress, that depends on the hosting disk size quota you have contracted.

    Regards,
    Josue

    in reply to: Hide blogpost title/filename #308021

    Hi!

    I can’t see it right now.

    Best regards,
    Josue

    in reply to: Images in Categories and Read More #308020

    You 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,
      Josue

    in reply to: Only change color of icons in icon list that are in footer? #307735

    Hi!

    Sorry, try this one for the headlines:

    #footer .widgettitle{
    color: red !important;
    }

    Cheers!
    Josue

    in reply to: Hide blogpost title/filename #307731

    Hi,

    Can you post the link to your website please?

    Regards,
    Josue

    in reply to: Widget not displaying as intended #307722

    Hi!

    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,
    Josue

    Hey!

    Try adding this code to the Quick CSS:

    #header_main_alternate, #header {
    -webkit-transform: translateZ(0);
    }

    Cheers! 
    Josue

    in reply to: Black margin above header #307715

    Hi 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!
    Josue

    in reply to: Hide blogpost title/filename #307714

    Hey!

    Try adding this code to the Quick CSS:

    .single .title_container{
    display: none;
    }

    Cheers! 
    Josue

    in reply to: Change color H4 in Icon List in footer #307712

    Please don’t create duplicates.

    in reply to: Author Page not coming up #307711

    Hello,

    Have you tried disabling all third-party plugins to see if it gets fixed?

    Regards,
    Josue

    Hi!

    Try prefixing the #footer ID to the CSS selector:

    #footer .iconlist_icon {
        background-color: red !important;
    }

    Cheers!
    Josue

    in reply to: Layerslider responsiveness #307707

    Hi!

    I believe it’s because of the aspect ratio of those images, try uploading images in landscape.

    Cheers!
    Josue

    in reply to: Import dummy data doesn´t work #307706

    Hi Patrick,

    Can you please create me an administrator account? post it here as a private reply.

    Regards,
    Josue

Viewing 30 posts - 13,441 through 13,470 (of 23,923 total)