Forum Replies Created

Viewing 30 posts - 62,641 through 62,670 (of 64,025 total)
  • Author
    Posts
  • in reply to: Icon Box without Icons #128792

    Hi,

    @formateins: Thanks for the tip. I agree with the solution.

    @TLinden: Yes, it is possible. You can do @formateins solution. You’ll have to give us a link to the website with the icon boxes. We will help you remove the icons on that specific page.

    Regards,

    Ismael

    in reply to: Reduce fotter size – reduce space left of sidebar #129026

    Hi,

    The content should push the footer. Please try to add more content to push the footer and socket down.

    You can’t reduce the margin between your sidebar and the browser edge. It will break the layout.

    Regards,

    Ismael

    in reply to: Unwanted blank space adding when image is hovered #129013

    Hey,

    Please let us know if we can help.

    Regards,

    Ismael

    in reply to: Enfold > Post slider > number of columns #129023

    Hi,

    Upgrade to Enfold 1.7. It will fix the issue.

    OR

    Edit wp-contentthemesenfoldconfig-templatebuilderavia-shortcodes > postslider.php, find this code

    "subtype" => array(	__('1 Columns', 'avia_framework' )=>'1',
    __('2 Columns', 'avia_framework' )=>'2',
    __('3 Columns', 'avia_framework' )=>'3',
    __('4 Columns', 'avia_framework' )=>'4',
    __('5 Columns', 'avia_framework' )=>'5',
    )),

    The array 1 Columns should be equal to 1.

    array( __('1 Columns', 'avia_framework' )=>'1'

    Regards,

    Ismael

    Hi,

    Did you try to set the image as your Featured Image? You can use Media Queries to make it responsive.

    You can add this on your custom.css or Quick CSS

    .avia_image {
    width: 100% !important;
    height: auto !important;
    }

    Regards,

    Ismael

    in reply to: addthis Social Share html #128762

    Hi,

    First go to the Add this plugin dashboard. Settings > Addthis Share. Fill in the AddThis Profile ID: then login using your Addthis account. Get the Addthis API code on your actual addthis account. Sign in here: https://www.addthis.com/login

    <!-- AddThis Button BEGIN -->
    <div class="addthis_toolbox addthis_default_style ">
    <a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
    <a class="addthis_button_tweet"></a>
    <a class="addthis_button_pinterest_pinit"></a>
    <a class="addthis_counter addthis_pill_style"></a>
    </div>
    <script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
    <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-51de2d2b7e09a8f5"></script>
    <!-- AddThis Button END -->

    Edit wp-contentthemesenfoldconfig-templatebuilderavia-shortcodes > portfolio.php, find this code.

    $output .= "<h2 class='portfolio-preview-title'><a href='{$link}'>".$entry->post_title."</a></h2>";

    Below, add the addthis api code with some modifications.

    $output .=	'<!-- AddThis Button BEGIN -->';
    $output .= '<div class="addthis_toolbox addthis_default_style ">';
    $output .= '<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a';
    $output .= '<a class="addthis_button_tweet"></a>';
    $output .= '<a class="addthis_button_pinterest_pinit"></a>';
    $output .= '<a class="addthis_counter addthis_pill_style"></a>';
    $output .= '</div>';
    $output .= '<!-- AddThis Button END -->';

    After that, open footer.php, find this code

    <a href='#top' id='scroll-top-link' class='avia-font-entypo-fontello'></a>

    Below, add the addthis javascript code with your unique profile id. It will look something like this.

    <script type="text/javascript">var addthis_config = {"data_track_addressbar":true};</script>
    <script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-51de2d2b7e09a8f5"></script>

    We got the code from the original API code.

    If you successfully did the instructions above, you will have the addthis button below the portfolio title.

    Regards,

    Ismael

    in reply to: LayerSlider Issues #129011

    Hi,

    Try the following:

    Slider Width: 100%

    Slider Height: 470

    Responsive: Yes

    Full-Width Slider: Yes

    Responsive under: 1300

    Layers Container: 1140

    Refrain from using px. Import the dummy data to check how the sliders are made.

    Regards,

    Ismael

    in reply to: Enfold Google Maps Widget #129102

    Hi,

    Can you give me the info about your google map? I’ll try to recreate it on my end.

    Regards,

    Ismael

    in reply to: Remove line under header #129099

    Hi,

    You can add something like this on your custom.css or QUick CSS

    #header_main {
    border-bottom: none;
    }

    Regards,

    Ismael

    in reply to: ENFOLD: how to give the combo widget a widget title? #129084

    Hi,

    @formateins: Thanks for the tip.

    @colorit2: You can edit framework > php > class-framework-widgets.php, remove everything then replace with this code: http://pastebin.com/s77nHLeV

    Regards,

    Ismael

    in reply to: Layer Slider – possible to center? #122654

    Hi,

    First the specify the Slider width to 100% then put something like 1024 on the Layers Container. On the option “Responsive under”, play between 1000-1300.

    Regards,

    Ismael

    in reply to: How to Add Contact Form to Footer #129096

    Hi,

    Yes, you can use the contact form 7 then add the shortcode using the text widget. :)

    Cheers,

    Ismael

    in reply to: Top Margin on H3 Special Heading not consistent #126014

    Hi,

    Did you try modifying the selector on your custom.css or Quick CSS?

    .av-special-heading.meta-heading.blockquote.modern-quote {
    margin-top: 0 !important;
    }

    Regards,

    Ismael

    in reply to: Nested short codes #127805

    Hi,

    Did you try <code></code> instead of the raw shortcode?

    I think it is possible to wrap shortcodes inside a shortcode. I tested this on my end.

    Regards,

    Ismael

    in reply to: Ipad portrait view – overlapping logo and promo box #129062

    Hi,

    Edit js > avia.js, find this code

    if(first_level_items > 8 && !bottom_menu)
    {
    switchWidth = 989;
    header.addClass('mobile_menu_tablet');
    }

    Replace the first_level_items with lesser digit. Something like this

    if(first_level_items > 5 && !bottom_menu)
    {
    switchWidth = 989;
    header.addClass('mobile_menu_tablet');
    }

    Can you give us a link to your website?

    I’ll tag Devin.

    Regards,

    Ismael

    in reply to: FB comments count 0 #128734

    Hi,

    What is the name of the plugin you’re using? Where did you get the code?

    Regards,

    Ismael

    in reply to: Enfold > Theme Options > Header > Social Icon #127306

    Hi,

    For the hover state, I created an icon inside a circle. I think 64×64 is enough for retina display.

    Regards,

    Ismael

    in reply to: Font issues #127951

    Hey,

    Glad Nick fixed it. I edited the login details.

    Regards,

    Ismael

    in reply to: Lightbox Element not responsive in LayerSlider #127781

    Hey,

    The code is not visible. Glad you fixed it. :)

    Regards,

    Ismael

    in reply to: Separate Footer #128640

    Hi,

    You can insert a Color Section element at the very end of page templates. :)

    Regards,

    Ismael

    Hi,

    You can change the widgets on Appearance > Widgets > Single Product Pages widget area.

    Regards,

    Ismael

    in reply to: Custom colours on different pages #128305

    Hi,

    The links gave me errors.

    You can target a specific page by their unique body id selector. Using Chrome, you can right click the page, Inspect Element. Look for the body class.

    We can use page-id-2251 to target the page. For example, if we want to change the header background, we can do something like this on custom.css or Quick CSS:

    .page-id-2251 #header_main {
    background: red;
    }

    We can use this same technique to target other elements within a specific page.

    Regards,

    Ismael

    in reply to: Home V7 Fixed Background Images #128677

    Hi,

    Look for the Color Section elements below the “About” button and Testimonials.

    Regards,

    Ismael

    in reply to: portfolio detail advanced layout #128676

    Hi,

    Create a portfolio item, look for Screen Options. Enable the Avia Layout Builder.

    Regards,

    Ismael

    in reply to: video alignment #128668

    Hi,

    What type of Blog Style do you have?

    Please give us a link to your website.

    Regards,

    Ismael

    in reply to: Site not working on first gen iPad #127099

    Hi,

    Increase the wordpress php memory limit, see if it fixes the issue.

    http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Regards,

    Ismael

    in reply to: Footer doesn't display in blog #128613

    Hi,

    Increase the php memory limit.

    http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Deactivate plugins, see if it works.

    Regards,

    Ismael

    in reply to: Remove logo on fixed header #127203

    Hi,

    You can try this

    .header_color .header_bg {
    background-color: rgba(0,0,0,.9);
    color: white;
    }

    .header_color .main_menu ul:first-child > li > a {
    color: white;
    }

    .header_color .main_menu ul:first-child > li.active-parent-item > a {
    color: gray;
    }

    Regards,

    Ismael

    in reply to: Change h3 default colour #128602

    Hi,

    You can add this on quick CSS or custom.css

    h3 {
    color: #441646 !important;
    }

    Regards,

    Ismael

    Hi,

    Your website loads fine. What css animations do you want to remove?

    Regards,

    Ismael

Viewing 30 posts - 62,641 through 62,670 (of 64,025 total)