Forum Replies Created

Viewing 30 posts - 60,871 through 60,900 (of 67,155 total)
  • Author
    Posts
  • in reply to: MENU BAR-PORTFOLIO SUBCATEGORIES #221479

    Hey!

    Sorry that is not possible with the theme. You can create a page, use an image element for each portfolio categories then link it manually to their respective portfolio category pages. Each portfolio category pages should have their own Portfolio Grid element configured to show specific portfolio items within a category.

    Cheers!
    Ismael

    in reply to: Responsive theme that supports a banner across the top #221478

    Hey!

    I checked the website and I guess you managed to prevent the logo from showing up. I also check the banner and it resizes properly on different screen sizes. Add this on Quick CSS to fix the mobile view:

    @media only screen and (max-width: 767px) {
      .bottom_nav_header.social_header #header_main .container {
    height: 40px;
    line-height: 40px;
    }
    }
    

    Best regards,
    Ismael

    in reply to: What's with Winter? Photo Sizes in Easy Slider #221477

    Hey!

    The theme crops down the image to a certain width and height, in this case you can find the thumbnail size on functions.php. Look for this code:

    $avia_config['imgSize']['gallery'] 		 		= array('width'=>710, 'height'=>575 );						// images for portfolio entries (2,3 column)
    

    I guess photo #2 and #6 are large images and wp crops them to the size specified above while #3 is a small one and wp didn’t crop it. You can tell wp not to crop an image by specifying the crop parameter to false. Replace the code above with this:

    $avia_config['imgSize']['gallery'] 		 		= array('width'=>710, 'height'=>575, 'crop' => false );						// images for portfolio entries (2,3 column)
    

    You need to regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    If you are not comfortable with the above function you can use a plugin like http://wordpress.org/extend/plugins/simple-image-sizes/ to manually crop certain thumbnail size. You can also follow Josue’s suggestion to use images with the same ratio or dimension.

    Best regards,
    Ismael

    in reply to: Homepage Layout Architekt #221476

    Hey!

    Please check the html markup. Make sure that there are no unclosed tags. Please post the link of the actual page here. Increase the wordpress php memory limit. Refer to this link.

    Regards,
    Ismael

    in reply to: Cant control image size no mater what I do ??? #221475

    Hi fgrippe!

    Add the class selector “alignleft” on the anchor tag. You can add something like this on the Text Block:

    <a class="alignleft" href="http://localhost/kriesi/enfold/wp-content/uploads/2012/04/21.jpg"><img class="awesome-image" alt="Awesome Balloons" src="http://localhost/kriesi/enfold/wp-content/uploads/2012/04/21-300x195.jpg"/></a>
    

    Use the “awesome-image” selector to specify the width and height of the image on Quick CSS:

    .awesome-image {
    width: 100px;
    height: auto;
    }
    

    Best regards,
    Ismael

    in reply to: Font control #221474

    Hey fgrippe!

    Go to Enfold > Styling > look for “Defines the Font for your body text”. Select “Helvetica Neue”. Add this on Quick CSS or custom.css:

    h1, h2, h3, h4, h5, h6 {
    font-family: "Helvetica Neue", "Times New Roman", Georgia, Arial, sans-serif;
    }

    Cheers!
    Ismael

    in reply to: Footer menu / widget issue #221143

    Hey!

    Please insert a blank Text widget on Appearance > Widgets > Footer – column widget areas. You can also disable the footer columns on Enfold > Footer > Footer columns.

    Best regards,
    Ismael

    Hi!

    You have a lot of plugins installed and maybe one of them is in conflict with the share plugin. Please deactivate all plugins except for the woocommerce and share buttons then we’ll check the site.

    Regards,
    Ismael

    in reply to: Message error with avia-shortcodes #221138

    Hey zoiestudio!

    Please download the theme again your themeforest account then override the installation via FTP. Please watch this video by Devin: https://vimeo.com/channels/aviathemes/67209750

    Regards,
    Ismael

    in reply to: Text Block Data Disappearing #221137

    Hi flypromotion!

    Why not use 5 1/5 column layout then insert an Image element on each of them with a Text Block. Specify the link of the Image element manually, point them to their respective shop or category page. Add the category title or content on the Text Blocks below the Image elements.

    Regards,
    Ismael

    in reply to: Erasing padding/space in general lay-out #221136

    Hey!

    Please use this instead:

    .hr {
    height: 25px;
    line-height: 25px;
    margin: 0;
    }
    
    body .column-top-margin {
    margin-top: 10px;
    }

    That should decrease the gaps between elements.

    Cheers!
    Ismael

    in reply to: Height of FullScreenSlider, No scaling #221135

    Hey!

    Please use the fullwidth easy slider instead of the fullscreen slider.

    Cheers!
    Ismael

    in reply to: changing the colors of tabs in content element #221134

    Hi!

    You can use this on Quick CSS:

    .js_active .active_tab_content {
    background: gray;
    }
    
    .js_active .active_tab {
    background: gray;
    font-size: 15px;
    }

    Change the css values.

    Regards,
    Ismael

    in reply to: MENU BAR-PORTFOLIO SUBCATEGORIES #221131

    Hey lrobbins303!

    You need to create a page for each sub-categories then add the Portfolio Grid element with their respective category selected.

    Cheers!
    Ismael

    Hi!

    I don’t see any white border below the slider. Can you please post a screenshot pointing to the issue? You can use imgur or dropbox to post a screenshot.

    Regards,
    Ismael

    in reply to: The Layer slider is on mobile devices not centered #221129

    Hey Ben!

    Please try to move the video using this:

    @media only screen and (max-width: 800px) and (min-width: 767px) {
    .ls-s2.ls-video-layer {
    left: 50px !important;
    }
    }

    Regards,
    Ismael

    Hi jmikhail!

    Can you please post the link to the actual website? You can use media queries to target the selector on mobile view.

    @media only screen and (max-width: 767px) {
      .phone-info {  /* Add your Mobile Styles here */ }
    }

    Regards,
    Ismael

    in reply to: H1 font-size style seems to be 'harcoded' #221127

    Hey jmaguirrei!

    Are you trying to change the font size of the page title? You can use this:

    .title_container .main-title {
    margin: 0;
    font-size: 20px;
    position: relative;
    z-index: 2;
    min-height: 36px;
    line-height: 2.3em;
    top: 0;
    font-weight: 400;
    }

    Cheers!
    Ismael

    in reply to: Site Title and Tagline Not Displaying in Browser #221123

    Hey!

    Can you please separate the username and password? It is jumbled, not sure what login details to use. Did you set the home page using the Enfold > Theme Options > Frontpage settings?

    Regards,
    Ismael

    in reply to: A few questions #221122

    Hi!

    You can add this on Quick CSS to make iconboxes’ height similar:

    .home .iconbox_content {
    min-height: 290px;
    }

    What is the word that you want to set as a link on the footer? You can use the ‘a’ tag: http://www.w3schools.com/tags/tag_a.asp

    Regards,
    Ismael

    in reply to: Icon questions #221120

    Hi caroberto6!

    Go to Appearance > Menu > Screen Options then enable the Link Target option. You can choose to open the menu link on a new window or tab.

    Add this on Quick CSS to remove the underline:

    .avia_message_box_content .av-icon-char {
    text-decoration: none;
    }

    Regards,
    Ismael

    in reply to: Change Child Navigation Text Color #221118

    Hi Boston182!

    Please use this on Quick CSS:

    .header_color .main_menu .menu ul li a {
    color: white;
    }
    
    #top .header_color .main_menu .menu ul .current_page_item > a, #top .header_color .main_menu .menu ul .current-menu-item > a {
    color: black;
    }

    Regards,
    Ismael

    Hey!

    Are you talking about the nested nav on the sidebar? Please post a link to the actual page with the sidebar nav. You can use this to change the active state of the menu:

    .nested_nav .current_page_item a {
    color: #cc4c21; !important;
    }

    Cheers!
    Ismael

    in reply to: Cant edit code in Avia Layout Builder #221110

    Hi!
    Please switch your theme to debug mode. Edit function.php, find this code:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add this code:

    //set builder mode to debug
    add_action('avia_builder_mode', "builder_set_debug");
    function builder_set_debug()
    {
    return "debug";
    }

    You will be able to see the actual shortcode below the builder.

    Best regards,
    Ismael

    in reply to: Problem with LayerSlider #221109

    Hey!

    Please deactivate all plugins then test the layer slider again on another browser. Also, please deactivate the cache plugin while working on the layer slider.

    Regards,
    Ismael

    in reply to: Fixed Background Image Scrolls on Mobile #221106

    Hi ghrahams!

    You have an old version of the theme. Please download the latest version of the theme on your themeforest account then update your installation via FTP. Watch this video by Devin: https://vimeo.com/channels/aviathemes/67209750

    Regards,
    Ismael

    in reply to: Menu Image items on Mobile. #221105

    Hey!

    I think it is working now. Glad we could help. :)

    Cheers!
    Ismael

    in reply to: Button Label space becomes a new line. #221104

    Hey CloudChoice!

    Can you please give us a link to a page with the button? Did you set a width for the button on the custom css?

    Cheers!
    Ismael

    in reply to: home page banner images upscaling when they should not #221100

    Hi!

    Are you zooming the browser out when you have the 1920×900px screen resolution? The width of the background image should be 1920px too unless you zoom out the browser screen. The background image on the layer slider will always stretch across the browser screen.

    Best regards,
    Ismael

    in reply to: Changing of color on image overlay in Gallery #221099

    Hi!

    You can use this to change the background color of the circle within the image overlay:

    .image-overlay .image-overlay-inside:before {
    	background: blue !important;
    }

    Please post the link to the actual page with the gallery. We can’t see the video because of a missing plugin.

    Cheers!
    Ismael

Viewing 30 posts - 60,871 through 60,900 (of 67,155 total)