Forum Replies Created

Viewing 30 posts - 62,551 through 62,580 (of 62,633 total)
  • Author
    Posts
  • in reply to: Menu Align #116427

    Hi,

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

    div .logo {
    float: left;
    position: relative;
    left: 0;
    display: block;
    }

    .main_menu {
    clear: none;
    position: relative;
    left: 0;
    }

    Regards,

    Ismael

    in reply to: Blog layout problem #115824

    Hey,

    Glad it worked. :)

    Regards,

    Ismael

    in reply to: Add widget to error404.php page #116224

    Hi,

    Sorry my bad. Please do this instead. On functions.php place this code at the very bottom.

    function new_widgets_init() {

    register_sidebar( array(
    'name' => '404 Widget',
    'id' => '404_sidebar',
    'before_widget' => '<div>',
    'after_widget' => '</div>',
    'before_title' => '<h2 class="rounded">',
    'after_title' => '</h2>',
    ) );
    }
    add_action( 'widgets_init', 'new_widgets_init' );

    Now edit error404.php and find this code

    <h3 class=''><?php _e('Feel like browsing some posts instead?', 'avia_framework'); ?></h3>

    Below add this code

    <?php
    if ( dynamic_sidebar('404_sidebar') ) :
    else :
    ?>
    <?php endif; ?>

    Go to Appearance > Widget and add some widgets on 404 Widget Area.

    Regards,

    Ismael

    in reply to: Enfold Permalinks %postname%/ Errorpage 404 #116793

    Hi,

    I maybe wrong but you mentioned the used of WPML. How many languages do you have? Are you aware that you need to edit the site for each language including the Theme Options. Say you create a Homepage for the English language, you also need to create another Homepage for the Spanish language. To make it easier check your translation options.

    Regards,

    Ismael

    in reply to: Change color of icons #116866

    Hi,

    Sure, just add this on your custom.css or Quick CSS.

    .header_color .social_bookmarks a {
    color: orange;
    }

    Regards,

    Ismael

    in reply to: Icons before the title menu #116559

    Hi,

    My bad. I thought that is your site. You can do something like this. First, inspect the menu then look for the unique menu list id. In my example I use this on my Quick CSS or custom.css.

    #menu-item-1390 a {
    background: url(../images/layout/loading.gif) left no-repeat;
    padding-left: 20px;
    }

    #menu-item-1390 a is the unique id of my home menu.

    Regards,

    Ismael

    in reply to: Backwards Compatibility (from Replete to Enflold) #116867

    Hi,

    Unfortunately, a lot have changed since Enfold was released. It is a totally different theme compare to Replete theme. You might need to redo the website. Sorry for the inconvenience. Let me tag the rest of the support team.

    Regards,

    Ismael

    in reply to: Slider items not centered. #116851

    Hi,

    @jwferne: Thanks for the tip.

    @Nuv: I already told you the solution. Please go to LayerSliderWP > General Settings > Basic > Layers Container. Adjust the width of the slider container. It will constrain the slider elements to a specified width. You might need to adjust the position of the elements.

    Regards,

    Ismael

    Hi,

    Try this on your Quick CSS or custom.css

    .menu-item a {
    font-size: 20px!important;
    }

    Regards,

    Ismael

    in reply to: Visual Editor inserting random code #116858

    Hi,

    Text entries are always enclose on the paragraph tag <p> and when you create a line break it will insert the code <br> tag.

    Does it bother you?

    Regards,

    Ismael

    in reply to: LayerSlider will not load on homepage #116913

    Hi,

    Edit the ABOUT page. Go to Advanced Layout Editor then insert the Advanced LayerSlider. Then click Content Elements tab and insert the Blog Posts element. It is up to you to arrange the layout. It works on my end.

    Regards,

    Ismael

    in reply to: How to change the title "Blog" #116904

    Hi,

    You can create a new page then name it to something else other than Blog. Go to Enfold > Theme Options > And where do you want to display the Blog? > Choose the newly created page.

    Regards,

    Ismael

    in reply to: Lightbox close button is cut off #116086

    Hey,

    Glad it is fixed now. :)

    Regards,

    Ismael

    in reply to: Changing the 'Icon List' icon size animation #116778

    Hi,

    You can make it smaller with this code

    .avia-icon-list .iconlist_icon{height:64px; width:64px; line-height: 60px; font-size: 30px; text-align: center; border-radius: 500px; position: relative; float:left; margin-right:30px; margin-left:2px; z-index: 5; border-style:solid; border-width:2px; color:#fff;}

    Change the values of height, width, line-height and font-size properties. Something like this.

    .avia-icon-list .iconlist_icon{height:50px; width:50px; line-height: 50px; font-size: 20px; text-align: center; border-radius: 500px; position: relative; float:left; margin-right:30px; margin-left:2px; z-index: 5; border-style:solid; border-width:2px; color:#fff;}

    Regards,

    Ismael

    in reply to: Hover Overlay #116634

    Hi,

    1.) Edit css > base.css and find this code.

    .image-overlay .image-overlay-inside::before{content:"E744"; font-family: 'entypo-fontello'; font-size: 18px; font-weight: normal; }
    .image-overlay.overlay-type-extern .image-overlay-inside::before{content:"27A6";}
    .image-overlay.overlay-type-video .image-overlay-inside::before{content:"25B6";}

    You can change it to something like this.

    .image-overlay .image-overlay-inside::before{content:"E744"; font-family: 'entypo-fontello'; font-size: 18px; font-weight: normal; }
    .image-overlay.overlay-type-extern .image-overlay-inside::before{content:"E723";}
    .image-overlay.overlay-type-video .image-overlay-inside::before{content:"E723";}

    Change the “content” property using Entypo. Refer to this link. http://www.entypo.com/characters/

    Regards,

    Ismael

    in reply to: Multi-Author Blog Images #116819

    Hi,

    Please try to setup a test installation and import the dummy data. It works fine on my end. Featured image full width on blog posts if the layout is set to No Sidebar.

    Can you give us a link to your website?

    Regards,

    Ismael

    in reply to: Slider items not centered. #116848

    Hi,

    IMHO, this is not a really big deal because users rarely use the zoom in and out function of any browsers. Though you can control this on LayerSliderWP > General Settings > Basic > Layers Container. Adjust the width of the slider container. You might need to adjust the position of the elements.

    Regards,

    Ismael

    Hi,

    Yes, you can style a specific category page but only the overview page of a certain category not the single view of the products included on that category. On the category overview page all you can change is the title of the products and the add to cart button text. For example you have a category named jewelry. You can add something like this on your custom.css or Quick CSS.

    .term-jewelry .product h3.cufon_headings {
    font-size: 20px;
    }

    Another example is shoes. You can add .term-shoes instead.

    Regards,

    Ismael

    in reply to: Hover over image breaks word wrap #116833

    Hi,

    Can you give us a link to the issue? I can’t seem to reproduce the issue.

    Regards,

    Ismael

    Hi,

    It is possible yes but you need to add a lot of css modification. This is the closest I can get. I used a 1500x640px image with the text or whatever elements already included on image itself.

    Create a new page. On the Layout Option select “No Sidebar”, “Don’t Display the Header”, “Don’t Display the socket & footer widgets” respectively.

    Go to Advance Layout Editor > Media Elements > Insert Full Width Easy Slider > Select the Splash Image.

    On your custom.css insert this code

    .page-id-1380 #header {
    display: none;
    }

    .fixed_header.social_header .page-id-1380 #main {
    padding-top: 0;
    }

    Notice the .page-id-1380? That is the unique id for my own splash page. You need to inspect your page then find the body class and use that instead.

    Regards,

    Ismael

    Hi,

    You remove them with this

    #top .social_bookmarks li {
    border: none;
    }

    Or you can change the color using this

    #top .social_bookmarks li {
    border-color: red;
    }

    Always glad to help. :)

    Regards,

    Ismael

    in reply to: Bug – Multiple pictures in a section #116765

    Hi,

    For the meantime you can add this on your custom.css to fix the alignment.

    .avia_image.avia-builder-el-4.el_after_av_imageavia-align-center, .avia_image.avia-builder-el-12.el_after_av_imageavia-align-center {
    margin-left: 30px;
    }

    Regards,

    Ismael

    in reply to: Bug – Multiple pictures in a section #116764

    Hi,

    Yeah, I can reproduce the problem. Somehow the second image produce this class

    class="avia_image avia-builder-el-2 el_after_av_imageavia-align-center "

    It should be

    class="avia_image avia-builder-el-2 el_after_av_image avia-align-center "

    I’m not sure why it is doing this so let me tag the rest of the support team.

    Regards,

    Ismael

    in reply to: menu bar colour #116004

    Hi,

    You can add this on your custom.css. To change the background of the menu bar you can use this

    #menu-north-east-barristers-main-menu, #header_main_alternate {
    background-color: red;
    }

    To alter the font color use this

    .menu-item a {
    color: black!important;
    }

    And for the menu border, you can use this.

    .header_color ul {
    border-color: blue;
    }

    Change the color value. You might want to change the color value that I use because they look ugly. :)

    Regards,

    Ismael

    in reply to: PORTFOLIO ITEM/TEAM MEMBER IMAGES NOT SHOWING #116333

    Hi,

    Did you create a portfolio item for each member? You need to upload an image for each portfolio items.

    Try to regenerate the thumbnails http://wordpress.org/extend/plugins/regenerate-thumbnails/.

    Regards,

    Ismael

    in reply to: Changes to blog grid template #116562

    Hi,

    Again, your website is not online.

    Regards,

    Ismael

    Hi,

    I don’t see the enfold theme on your site. This is your 2nd thread.

    Regards,

    Ismael

    in reply to: Mega menus #116585

    Hi,

    I don’t see anything on the website. My suggestion is to make the font size small. Maybe you might have to do it by separating some of the menus. Please make the site live so that we can inspect it.

    Regards,

    Ismael

    in reply to: Portfolio thumbs overlapping thumbnail titles above #116598

    Hey,

    Thanks for the tip. It will really help if you can give us a link to the issue. Did you fix it?

    Regards,

    Ismael

    in reply to: menu bar colour #116002

    Hi,

    Your site can’t be found.

    Regards,

    Ismael

Viewing 30 posts - 62,551 through 62,580 (of 62,633 total)