Forum Replies Created

Viewing 30 posts - 17,281 through 17,310 (of 23,923 total)
  • Author
    Posts
  • in reply to: layerslider not working after theme update #272079

    Hi,

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

    Regards,
    Josue

    in reply to: Slider trouble in live version #272078

    Hi Amy,

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

    Regards,
    Josue

    in reply to: Plain Text Email #272077

    I also tried looking at the source but couldn’t find it, maybe the tool is catching the @ symbols used in the font-face include code.

    Regards,
    Josue

    in reply to: Accordion slider #272071

    Hi James,

    Can you post the link to your website please?

    Regards,
    Josue

    Si te refieres a la altura, esto servirá:

    .html_header_top .av_bottom_nav_header .main_menu ul:first-child > li > a, .html_header_top.html_bottom_nav_header .main_menu>div, .html_header_top.html_bottom_nav_header .main_menu ul:first-child {
        height: 30px !important;
        line-height: 30px !important;
    }

    Cambia 30px por el tamaño deseado.

    Saludos,
    Josue

    in reply to: Visual Problem Related to FSQM Plugin #272068

    Hey MC!

    Yes there is, if you are not going to use another form in the website you can edit css/base.css, remove/comment from line 182 to line 256:

    /* #Forms
    ================================================== */
    
    	#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

    in reply to: Header Slider Errors #272059

    You are welcome, always glad to help :)

    Regards,
    Josue

    in reply to: Plain Text Email #272058

    I see, the tool indicates that there is 1 email address in the source code but it doesn’t tell where it is, making it harder to debug.

    But, as i said this does not affect the SEO at all, it’s just a recommendation to prevent spam harvesters to capture the supposedly unprotected email address.

    Best regards,
    Josue

    in reply to: Unable to add link in advanced layout, text editor #272032

    Hey!

    Please update WordPress to 3.9.1, that will fix it.

    Best regards,
    Josue

    in reply to: Header Slider Errors #272030

    Hi!

    Put this in the functions.php file:

    error_reporting(0);
    

    Regards,
    Josue

    in reply to: Can't Edit Header #272029

    Hey!

    You forgot the username to login.

    Regards,
    Josue

    in reply to: Plain Text Email #272027

    Hi!

    I don’t know what this “plain text email” error means but i’m pretty sure it doesn’t affect your site. Could you give more details on the SEO tool you are using or what exactly the ‘plain text email’ means?

    Regards,
    Josue

    in reply to: Post Views #272023

    Hey!

    Open includes/loop-index.php, put it exactly like this:

    Regards,
    Josue

    Hay un error de tipeo en tu código, esta asi:

    div#header_main_alternate {
        background: #cecccd !important;
    #avia-menu a, #header_main_alternate {
        border: 0;
    }

    Debería ser asi:

    div#header_main_alternate {
        background: #cecccd !important;
    }
    #avia-menu a, #header_main_alternate {
        border: 0;
    }

    Saludos,
    Josue

    in reply to: When I insert the more tag, it doesn’t work #272014

    Hey!

    It seems to be working on my end:

    Best regards,
    Josue

    in reply to: Transposh on Header on Enfold #272004

    Hey!

    You could try using the ‘ava_after_main_menu’ hook, something like this (functions.php):

    function add_transposh_widget(){
    if(function_exists(“transposh_widget”)) { transposh_widget(array(), array(‘title’ => ‘Translation’, ‘widget_file’ => ‘flags/tpw_flags.php’)); }
    }
    add_action('ava_after_main_menu', 'add_transposh_widget', 10, 0);

    Regards,
    Josue

    in reply to: Mail chimp opt-in #272003

    Hey Ali!

    You need to change the pixel values in your code by percentage values, try using this code instead:

    div.avia_codeblock {
    background-color: rgb(145, 165, 138);
    padding-top: 1em;
    padding-bottom: 1em;
    margin-top: -4em;
    padding-left: 4em;
    width: 100%%;
    }
    
    #top input[type="email"] {
    -webkit-appearance: none;
    border: 1px solid #C2BDBD;
    padding: 14px 7px;
    outline: none;
    font: 15px "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    width: 59%;
    max-width: 99%;
    display: block;
    margin-bottom: 13px;
    background: #fff;
    border-radius: 0px;
    padding-left: 1em;
    }
    
    input[type="submit"], #submit, .button {
    padding: 17px 0;
    cursor: pointer;
    border: none;
    -webkit-appearance: none;
    border-radius: 0px;
    position: absolute;
    top: 13%;
    right: 15%;
    width: 20%;
    }

    Cheers!
    Josue

    in reply to: i want my phpbb forum inside enfold #272000

    Hey!

    You can migrate, refer to this articles:
    http://premium.wpmudev.org/blog/how-to-migrate-a-phpbb-forum-to-wordpress-and-bbpress/
    http://codex.bbpress.org/import-forums/phpbb/

    If you require technical help you’d need to contact a developer as this question is out of the support scope we can offer.

    Best regards,
    Josue

    in reply to: Mobile layout #271999

    Hi!

    The site you linked has the responsiveness disabled.

    Best regards,
    Josue

    Prueba con esto:

    #avia-menu a, #header_main_alternate {
        border: 0;
    }

    Añade esto al Quick CSS:

    div#header_main_alternate {
        background: #d7d7e0 !important;
        border-bottom: 0 !important;
    }

    Habría que hacer ciertos ajustes cuando se hace scroll.

    in reply to: Homepage V2 #271942

    Hi,

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

    Regards,
    Josue

    in reply to: Would like RSS Widget links to open in a new window #271941

    Hi!

    That’s a WordPress native widget, to change it you’d need to change the WP files, however you can try using this plugin:
    http://wordpress.org/plugins/rss-just-better/

    Please note that this is out of the scope of the support we can offer.

    Regards,
    Josue

    Hi,

    Can you post a link to the website please?

    Regards,
    Josue

    in reply to: Duplicate sections #271926

    Hi,

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

    Regards,
    Josue

    in reply to: Portfolio items not showing up #271922

    Great news, you are welcome :)

    in reply to: Color Section #271630

    Hey!

    1. Change the code to:

    .page-id-3599 .avia_ajax_form input[type='submit']{
        color: white !important;
    }

    2. Add this:

    .social_bookmarks, .phone-info {
        font-size: 18px;
    }

    Cheers!
    Josue

    in reply to: Color Section #271628

    This will fix it:

    .page-id-3599 .avia_ajax_form input{
        color: white !important;
    }

    Cheers!
    Josue

    in reply to: Color Section #271613

    It seems you pasted the code directly from the mail and that’s putting the quotes as charcodes quot;. You’d need to rewrite them manually in the Quick CSS box (the code should look like in the image i posted).

    Cheers!
    Josue

    in reply to: Color Section #271608

    Hi!

    It should look like this:

    Cheers!
    Josue

Viewing 30 posts - 17,281 through 17,310 (of 23,923 total)