Viewing 30 results - 103,471 through 103,500 (of 106,398 total)
  • Author
    Search Results
  • #135876

    In reply to: Header/Nav/footer

    This does not work, the social icons do not show up at all, the header is set to small fixed and is in it’s correct position (https://www.dropbox.com/s/34bqq0yz63cntmr/Image11.jpg)

    however, the menu drop down is now showing up like this https://www.dropbox.com/s/ekg1e9ejjnenvrq/Image2.jpg, instead of like this https://www.dropbox.com/s/h2emfn58r373pv2/Image3.jpg0. so I need the social icons to the side vertically and fixed, and need to be able to change their color. Thanks

    #137004

    In reply to: Header image

    Hey,

    Yes, that is possible. Go to Enfold > Styling > scroll a bit below then click Header > Background Image. You can select a predefined background images or upload your own.

    Regards,

    Ismael

    Hi,

    Go to Enfold > Theme Options > Favicon. Upload your own image.

    Regards,

    Ismael

    #28247

    Topic: Header image

    in forum Enfold
    #136876

    Hey,

    1030x360px is enough for blog and portfolio items. If you are planning to use the Fullwidth Slider, you might want to use images with 1600x700px dimension. You can find the custom thumbnail sizes on functions.php:

    $avia_config['imgSize']['widget'] 			 	= array('width'=>36,  'height'=>36);						// small preview pics eg sidebar news
    $avia_config['imgSize']['square'] = array('width'=>180, 'height'=>180); // small image for blogs
    $avia_config['imgSize']['featured'] = array('width'=>1500, 'height'=>430 ); // images for fullsize pages and fullsize slider
    $avia_config['imgSize']['extra_large'] = array('width'=>1500, 'height'=>1500 , 'crop' => false); // images for fullscrren slider
    $avia_config['imgSize']['portfolio'] = array('width'=>495, 'height'=>400 ); // images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] = array('width'=>260, 'height'=>185 ); // images for portfolio 4 columns
    $avia_config['imgSize']['gallery'] = array('width'=>710, 'height'=>575 ); // images for portfolio entries (2,3 column)
    $avia_config['imgSize']['entry_with_sidebar'] = array('width'=>710, 'height'=>270); // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider

    //overwrite blog and fullwidth image on extra large layouts
    if(avia_get_option('responsive_layout') == "responsive responsive_large")
    {
    $avia_config['imgSize']['gallery'] = array('width'=>845, 'height'=>684 ); // images for portfolio entries (2,3 column)
    $avia_config['imgSize']['entry_with_sidebar'] = array('width'=>845, 'height'=>321); // big images for blog and page entries
    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1210, 'height'=>423 ); // images for fullsize pages and fullsize slider
    }

    Regards,

    Ismael

    #135556

    In reply to: Gallery image re-order

    Hi,

    If you switch the Avia Builder to debug mode, you will see the actual order of the image id on the gallery shortcode. Edit functions.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 see the actual shortcode below the builder. If you insert the “Gallery” element then added some images, the shortcode will look like this:

    [av_gallery ids='2617,2618,2616,2619' style='thumbnails' preview_size='portfolio' thumb_size='portfolio' columns='5' imagelink='lightbox' lazyload='avia_lazyload']

    Notice that the ids of the images are listed. You can rearrange them manually. You can also re-order them on the wordpress gallery UI.

    Regards,

    Ismael

    #136450

    In reply to: Twitter widget pro css

    Hi,

    I’m not sure if this is what you want but you can add the code on your custom.css or Quick CSS. You need to provide a twitter icon for the content property:

    #top .widget_twitter li:before {
    content: url('IMAGE URL HERE');
    position: absolute;
    left: 0px;
    margin-top: 20px;
    }

    #top .widget_twitter li {
    padding: 0 0 8px 55px;
    margin: 0 0 8px 0;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    }

    Regards,

    Ismael

    #28231
    kriru
    Participant

    Hi,

    my site link is http://career.guru99.com/

    I am using your enfold theme.i want some customization in the theme.

    1) Remove search button from header

    2) apply different color to title and links to differentiate between them

    3) enlarge font size to 14px

    so how can i do this

    4)how to include google search in header

    see this image for what i am actually need

    http://screencast.com/t/gTwaghZo

    please help

    #136067

    In reply to: Edit the contact form

    Hi Ismael,

    Thank you for your reply.

    The generator contact form uses wp_mail ?

    Otherwise you would have a solution to automatically include code HTML in a message sent to the user?

    The aim being to introduce images and styles in the email sent

    Thank you ^^

    #134415

    Hey,

    I hope it fixes it. :)

    Regards,

    Ismael

    #28226
    lwarren
    Participant

    Hi,

    How do I remove the feature image from displaying in single posts when I select the “Standard” post type?

    Thanks.

    #136745

    Hey,

    Glad you fixed it. :)

    Regards,

    Ismael

    #28224
    DribbleCreative
    Participant

    I am having a problem that arose recently for no apparent reason. The easy slider I have on the lower part of the page will not cycle past the second image any more.

    see here: http://www.wallerforcolorado.com

    What could be the problem and why would it randomly stop working.

    #135401

    Hi Devin,

    Sorry for my delayed response but thank you for your suggestion. I’ve tried it but no luck.

    Please see the attached 2 screen shots. The second one is curious and may tell you something; the ‘More about feature B’ button displays correctly while the ‘More about feature C’ button does not. Strange.

    I look forward to hearing back from you.

    Regards,

    Dave

    ***doesn’t work*** http://ottawa.inmypocket.ca/pages/landing-page/

    ***works*** http://www.inmypocket.ca/pages/landing-page/

    http://www.inmypocket.ca/wp-content/uploads/2013/08/Screenshot1.png

    http://www.inmypocket.ca/wp-content/uploads/2013/08/Screenshot2.png

    #136300

    Hey,

    The css for the table element is located on css > base.css > #Table. You can edit those or remove them completely if you want your own modifications for the table element. You can also override them using the custom.css or Quick CSS. I notice that you have an inline css code for the table element, it will automatically override the table properties located on base.css.

    Regards,

    Ismael

    #136757

    Hi,

    I don’t see any featured images on your shop page. Please add them.

    Regards,

    Ismael

    #136895

    I do have it in a color box and after working on adding images to each testimony, I now notice that it’s all of a sudden adding random p tags again and not correctly closing them out …

    <p>
    <p>We use Regal Pest Control in Ocala. They visit our cabin in the forest each month and spray for insects and other pests, and we can’t thank them enough!</p>

    #133367

    In reply to: Disappearing Sidebars

    Hi serverlift,

    Bit of an odd image but stuff like that is typically related to either a plugin conflict or something like that. For now, just make sure you are using the most recent version of the theme files (2.0.1 right now), WordPress 3.6 and any plugins that have updates should be updated as well.

    If it persists, deactivate all of your plugins, log out, log back in and try editing a pages sidebar again.

    Regards,

    Devin

    #136526

    I found a simple resolution!

    I just replaced a line in avia.js like this. Finally works fine.

    Replace this line

    var elements = $(‘#main a img’).parents(‘a’).not(‘.noLightbox, .noLightbox a, .avia-gallery-thumb a, .avia-layerslider a’).add(‘#main .avia-hover-fx’);

    with this

    var elements = $(‘#main a img’).parents(‘a’).not(‘.noLightbox, .noLightbox a, .avia-gallery-thumb a’).add(‘#main .avia-hover-fx’);

    #28216
    dnikitiuk
    Participant

    Hello,

    The main product image within woocommerce shows a scroll bar beside the image. How can I remove/ have the image show at the correct cropped 450x450px framed size?

    http://cetatek.msvdev.com/?product=warp1

    Uploaded Image Size: 1000 x 750px

    Woocommerce->Catalog->Single Product Image= Width:450px Height: 999px Hard Crop:No

    Secondly, product setup without images also have the scroll bar beside the placement image.

    http://cetatek.msvdev.com/?product=m01-twin-lens-regular-fit

    Any ideas?

    Thanks.

    #28213
    charliegriefer
    Participant

    Hi… just purchased enFold. Looks very cool, so first off, thank you for the theme.

    Rather new to this all, so please bear with me if this is a n00b question. Is there a preferred image dimension for featured images? (assume using large images). A “holy grail” of height/width that will display properly on the blog front page as well as the blog entry itself?

    Thanks!

    Charlie

    #135418

    In reply to: ie8 images in posts

    I set css img { max-width: 100%; max-height: 100%; } to fix thumbnail distortion in ie8 on the archive pages

    but just realize it messed up the slider images.

    I changed to this so it is more specific:

    img.attachment-square.wp-post-image {

    max-width: 100%;

    max-height: 100%;

    }

    which does seem to work for just the archive images.

    But i can’t seem to get the latest post widget tiny images to fill square. Also the “you might also like” (related posts) images are distorted. Seems the style above should have fixed – but it does not.

    I am also having issue with the size of images inside of tabs – for some reason they are too large in ie8 and a scroll bar appears.

    Can provide an overall generic style sheet for the ie fixes? It seems to be a lot of work to get this theme to work in ie8. Having to go through all the images and remove the width and height is bad enough but also having to figure out all the css style to change and then only to effect ie8 etc..

    #135917

    Hi Devin,

    Thanks for the confirmation.

    A related question: is it possible to have the image location relative to say the logo in the header remain constant in responsive mode?

    Valerie

    #134414

    I think that sorted it :-)

    Will try it out a bit more tomorrow and let you know and update the statues if its 100%

    Thanks for the help.

    #136576

    In reply to: Ajax portfolio grid

    Hi promowl,

    It will be one of the options in the Portfolio element that you add to your page.

    If you don’t see the option, you need to update your version of the theme following this video : https://vimeo.com/channels/aviathemes/67209750

    The content for each portfolio item you want to display in Ajax view must be set separately below the visual editor for each portfolio item. Its a bit more strict on the output so it gives you the option to define the image gallery there.

    Regards,

    Devin

    #135555

    In reply to: Gallery image re-order

    Ok, I will try tomorrow and update you on what happens.

    #136449

    In reply to: Twitter widget pro css

    It looks ok but it was more a forum question to see what others had done. Mine is like this:

    http://chriswardphotography.net/blog/

    But I just feel its a little plain. Would be nice to have a little bird icon for each tweet or image;

    http://www.google.be/imgres?imgurl=&imgrefurl=http%3A%2F%2Fwww.musformation.com%2Fsongwriformation%2F13.html&h=0&w=0&sz=1&tbnid=11wH5KFNub_JSM&tbnh=284&tbnw=178&zoom=1&docid=gnlqWx6P_CQLiM&hl=en&ei=2AsVUrjILdSY0AXl6YCgCQ&ved=0CAEQsCU

    I know you are busy so not asking for anything really more to see what others have done.

    #135890

    In reply to: Tag page problem

    I just have this which changes the image sizes in the functions.php

    <?php

    function avia_change_image_size_array()

    {

    global $avia_config;

    $avia_config = array(‘width’=>36, ‘height’=>36); // small preview pics eg sidebar news

    $avia_config = array(‘width’=>180, ‘height’=>180); // small image for blogs

    $avia_config = array(‘width’=>1500, ‘height’=>901 ); // images for fullsize pages and fullsize slider

    $avia_config = array(‘width’=>1500, ‘height’=>1500 , ‘crop’ => false); // images for fullscrren slider

    $avia_config = array(‘width’=>495, ‘height’=>297 ); // images for portfolio entries (2,3 column)

    $avia_config = array(‘width’=>260, ‘height’=>156 ); // images for portfolio 4 columns

    $avia_config = array(‘width’=>710, ‘height’=>426 ); // images for portfolio entries (2,3 column)

    $avia_config = array(‘width’=>710, ‘height’=>270); // big images for blog and page entries

    $avia_config= array(‘width’=>1030, ‘height’=>619 ); // images for fullsize pages and fullsize slider

    if(avia_get_option(‘responsive_layout’) == “responsive responsive_large”)

    {

    $avia_config = array(‘width’=>845, ‘height’=>507 ); // images for portfolio entries (2,3 column)

    $avia_config = array(‘width’=>845, ‘height’=>321); // big images for blog and page entries

    $avia_config= array(‘width’=>1210, ‘height’=>727 ); // images for fullsize pages and fullsize slider

    }

    avia_backend_add_thumbnail_size($avia_config);

    }

    add_action( ‘init’, ‘avia_change_image_size_array’, 1);

    #136476

    Hi Martin,

    You can use: http://wordpress.org/plugins/wordpress-https/

    Regards,

    Devin

    #135417

    In reply to: ie8 images in posts

    I removed the width and height attributes to fix the disappearing image issue in ie8 – thank you

    I set css img { max-width: 100%; max-height: 100%; } to fix thumbnail distortion in ie8 on the archive pages – thank you

    The plugin html5shiv made the site display worse in ie8 – I removed

    The latest post widget image – in ie8 displays too small and does not fill the square. Can you tell me what css to add to fix?

Viewing 30 results - 103,471 through 103,500 (of 106,398 total)