Viewing 30 results - 14,821 through 14,850 (of 18,733 total)
  • Author
    Search Results
  • #379375

    I have managed to screwed it up even more. now the background of the header menu is green.
    1.i just want it to be splash blue default color
    2. I am trying to change the sticky menu so that it doesn’t resize when scrolling down
    3.What is the perfect image dimension for fullscreen image slider ? can i change the container of the fullscreen image slider to fit my image size ?
    4. Change body and header menu font size

    Thanks

    jeromeleblanc
    Participant

    Hi,

    I use grid rows in my site, and I have some strange behavior.

    1. : There are some “down arrow borders” between two white grid rows (the color of the arrow is the color of my first color section)
    You can see it here : https://www.dropbox.com/s/wxvpso5hb2k4p0u/down_arrow.png?dl=0

    2. I have several h2 titles on my page : but on the first occurence (first grid row) font size is bigger than the next one (also true for other titles size).

    Anyone can hep me on these two points ?

    Thanks in advance

    • This topic was modified 11 years, 2 months ago by jeromeleblanc.
    #379364
    sitesme
    Participant

    Hi
    Some pages are showing weird code such as [av_textblock size=” font_color=” color=”] and [/av_textblock] on some pages.
    On this specific situation, page A has a form. When the form is submitted, a “Thank you” page opens through ajax by the form on Page A and the code above shows with the “Thank you” message in between.

    Any idea why is this being displayed and how to avoid this?

    Many thanks

    #379255

    Hey!

    Try adding this code to the Quick CSS:

    .single .post-title {
        font-size: 22px !important;
    }

    Adjust as needed.

    Cheers! 
    Josue

    #379249
    xfacta
    Participant

    HI there

    I have tried several options as on your forum but cannot get it to work. The default single post title is H1 but it too large so I want to make this smaller but only for single post titles. How can I do this please?

    Cheers

    #379077

    Hi!

    Add this to the bottom of your functions.php file.

    add_action( 'ava_main_header', 'enfold_customization_add_to_header' );
    function enfold_customization_add_to_header() {
    	echo do_shortcode("[av_button label='Client Login' link='manually,http://www.google.com' link_target='' size='small' position='right' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff' custom_class='']");
    }

    And then replace “http://www.google.com” with the URL to your WordPress login form.

    Regards,
    Elliott

    #378927

    Hi!

    Make sure to read and follow the steps carefully.

    1. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.

    2. Open up /enfold/includes/loop-index.php and find line 212 which should look like this.

    avia_social_share_links();
    

    3. Add this above it.

    if ( is_single() ) {
    	echo do_shortcode("[av_hr class='invisible' height='90' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']");
    	$link = get_permalink( avia_get_option('blogpage') );
    	echo do_shortcode("[av_button label='Back' link='manually,".$link."' link_target='' size='medium' position='left' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']");
    }

    Regards,
    Elliott

    #378869

    Hey brianwelsh!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab and adjust as needed

    .inner_tooltip {
    font-size: 16px;
    }

    Cheers!
    Yigit

    #378866
    brianwelsh
    Participant

    Hi ,

    I would like to increase the font size on the image captions when you hover over a Gallery Image or a Partner Logo Element.

    Thanks
    Brian

    #378858

    Hi Barb!

    Happens to the best of us :)
    Please add following code to Quick CSS as well

    @media only screen and (max-width: 480px) {
    #top #wrap_all .main_color h1 {
    font-size: 28px;
    }
    .responsive .logo img {
    max-width: 85%;
    }
    nav.main_menu {
    margin-top: -25px;
    }}
    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .container {
    width: 90%;
    max-width: 90%;
    }}

    !important rule should not cause any issues as long as used on correctly targetted selector

    Best regards,
    Yigit

    #378772

    Hi CharlieTh!

    You can use Masonry element or Portfolio Grid element and create your elements as Portfolio items.
    You can use following CSS code

    .av-masonry-entry .av-masonry-entry-title { font-size: 20px; }
    .av-masonry-entry-content.entry-content { font-size: 16px; }
    .av-inner-masonry-content:hover { background-color: red!important; }

    Such feature is not available on Enfold currently, please feel free to request it here – https://kriesi.at/support/enfold-feature-requests/
    If you need it urgently, you are going to need to hire a freelance developer.

    Regards,
    Yigit

    #378499

    Hi AJDesignCo!

    Please remove “media=”all”” and add your code as following

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

    Cheers!
    Yigit

    #378488
    AJDesignCo
    Participant

    I need to make the text larger in the Small bar above Main Menu. I see I can style the color in the Advanced Styling menu, but I can’t adjust the size. And I tried using this custom CSS, but there’s something else superseding my font size

    media="all"
    .phone-info {
    font-size: 18px;
    }

    Please let me know what code to use in custom CSS. Thanks!

    #378476
    CharlieTh
    Participant

    I would like to recreate look like this.
    http://www.wholefoodsmarket.com/

    Which masonry should I start working with? (Currently working with Masonry Gallery as tester.)

    Which CSS should I target to change styling of the captions, as shown?

    Guess that would be NORMAL captions and also HOVERED captions?

    Below changes ALL captions backgrounds — but doesn’t change font size or color. Only Backgrounds.
    .av-inner-masonry-content{background-color: orange!important;}

    I tried in Edit > Media to use CSS in Title and Caption and it does what I want, but I would prefer more “global” solution, so don’t have to
    dit title and caption for each individual image in Media.

    NOTE that hover works with the IMAGE somehow, but does nothing with the title and caption. Can I change hover effect for title and caption, too?

    Thank you!

    • This topic was modified 11 years, 2 months ago by CharlieTh.
    #378437

    In reply to: Mega menu font size

    Hey koopar!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    #header .mega_menu_title { font-size: 14px; }

    Best regards,
    Yigit

    #378246

    Hi fvdwei!

    Thank you for your kind words! Please add following code to Quick CSS in Enfold theme options under General Stlying tab

    @media only screen and (max-width: 480px) {
    #top #wrap_all .main_color h2 {
    font-size: 30px;
    }
    #top #wrap_all .main_color h3 {
    font-size: 24px;
    }}

    Cheers!
    Yigit

    #378183

    Topic: Mega menu font size

    in forum Enfold
    koopar
    Participant

    How do you customise the font size in the Mega Menu. ie. make smaller.

    Thanks in advance.

    #378034

    like you can see on https://www.santegra-international.com/ if you smaller the screen search icon i shifting and not fixed.
    No search icon/cart between 767px and fullscreen als if i change @media only screen and (max-width: 767px) { to 989px

    is there a full version of your CSS? ;-)

    my css is looking like this:
    @media only screen and (max-width: 989px) {
    .html_mobile_menu_tablet .main_menu, .html_mobile_menu_tablet #header_main_alternate, .responsive #header .main_menu ul, #top #menu-item-search { display: block; }
    .av-main-nav li { display: none; }}

    @media only screen and (max-width: 990px) {
    li#menu-item-search a { font-size: 24px!important; }
    nav.main_menu { float: right; margin-right: 15%; }}

    @media only screen and (max-width: 989px) {
    .main_menu {
    left: auto !important;
    position: absolute !important;
    right: -90px !important;
    top: -5px !important;
    }
    }
    @media only screen and (max-width: 989px) {
    #advanced_menu_toggle {
    position: absolute;
    right: -30px !important;
    top: 0 !important;
    }
    .cart_dropdown {
    position: absolute !important;
    right: -30px !important;
    top: 70px !important;
    }
    }

    i tried this also which is online at the moment:
    Still search icon/cart between 767px and fullscreen als if i change @media only screen and (max-width: 767px) { to 989px

    /*search icon, cart in mobile view*/
    @media only screen and (max-width: 989px) {
    #advanced_menu_toggle {
    position: absolute;
    right: -10px !important;
    top: 18px !important;
    }
    .cart_dropdown {
    position: absolute !important;
    right: -40px !important;
    top: 50px !important;
    }
    li#menu-item-search a { font-size: 24px!important; }
    nav.main_menu {
    position: absolute !important;
    right: -30px !important;
    top: 30px !important;
    }
    }

    If possible hand the request over to a fullsolution developer please.

    DANKE

    #378025
    Muskrat37
    Participant

    Hi – almost feel dumb typing this as I’m fairly proficient with css, but I can’t figure it out.

    I am using a child theme – and I’m trying to edit the color of the “widgettitle” class that is applied to the “h3” tag of the text widget.

    I changed the css rules for the class “widgettitle” and they get applied (like font-size, text-transform etc.) – but I can’t change the “color”. No matter what I do “main_color h3″ under media=”all” in the enfold_child.css is being applied instead of the color I”m putting in my child theme css. Shouldn’t the css from the class in my child theme over-ride the previously applied css rules?

    I can change the “main_color h3” to achieve what I want – but I don’t want all h3 tags to be that color. I only want the “widgettitle” h3’s to have a different color.

    Thanks in advance.

    Chad

    • This topic was modified 11 years, 2 months ago by Muskrat37.
    #377998

    Hey!

    You’ll need to add the code above line 216 in the /enfold/includes/loop-index.php file then.

    Try this.

    if ( is_single() ) {
    	echo do_shortcode("[av_hr class='invisible' height='90' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']");
    	$link = get_permalink( avia_get_option('blogpage') );
    	echo do_shortcode("[av_button label='Back' link='manually,".$link."' link_target='' size='medium' position='left' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']");
    }

    Regards,
    Elliott

    #377754
    This reply has been marked as private.
    #377742

    To change the color and size of admin font:

    framework/css/avia_admin.css

    Line 386
    .avia_description{
    font-size:12px;
    color:#000;
    }

    AND

    Line 230
    .avia_page_title {
    -webkit-filter: grayscale(1);
    background-position: left center;
    background-repeat: no-repeat;
    display: block;
    font-size: 13px;
    font-weight: normal;
    padding: 0 0 0 24px;
    }

    #377694

    Hi klaaba!

    use this in Quick CSS field to control the font size:

    .avia-promocontent p {
    font-size: 13px;
    }
    

    Cheers!
    Andy

    #377648
    klaaba
    Participant

    Hi,

    I am using the PromoBox with an unordered list.

    However, in one line the body text size is bigger than in the rest of the site. This is occurring in two different PromoBoxes.

    http://awesomescreenshot.com/0eb45xlb77

    Any ideals what I have to change?

    Kind regards,
    Klaaba

    #377527
    thecszone
    Participant

    On my home page I have added a full width slider and then code box below it to add a background. Then I have a text box which I have two problems with.
    1. I want to eliminate the space between the slider and the text.
    2. I used HTML to change font color, but when I try to change size, no matter the px size I enter, I get huge text. How can I modify text size here?
    Thanks.
    Susan

    #377477
    add_action( 'ava_after_content', 'enfold_customization_back_button' );
    function enfold_customization_back_button() {
    	echo do_shortcode("[av_hr class='invisible' height='90' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='50px' custom_border_color='' custom_margin_top='30px' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='' icon='ue808' font='entypo-fontello']");
    	$link = get_permalink( avia_get_option('blogpage') );
    	echo do_shortcode("[av_button label='Back' link='manually,".$link."' link_target='' size='medium' position='left' icon_select='no' icon='ue800' font='entypo-fontello' color='theme-color' custom_bg='#444444' custom_font='#ffffff']");
    }

    i used this one from u ;)

    #377271

    Hey!

    Thank you for using Enfold.

    You can follow @begrafik’s suggestion or use this:

    #footer .widgettitle {
    font-size: 20px;
    }

    Use this for the latest news widget title:

    #top .footer_color strong.news-headline {
    color: blue;
    }

    Regards,
    Ismael

    #377246

    Hi!

    You can use this to modify the title:

    .home h3.slide-entry-title.entry-title {
    font-size: 19px !important;
    text-transform: uppercase !important;
    color: #e56d78 !important;
    }

    Cheers!
    Ismael

    #377229

    Hey Elliott,

    I insert this code and got the icon shifting behind the cart- and menu icon.
    Above 990px the cart icon is sticked to the right window. http://awesomescreenshot.com/07c45pyr77
    Can we leave menu, cart, search sticked to the right side when showing on smaller screens.
    So the three icons not cover the logo and not cover each other.
    This could be a feature request and discussed in your team please.

    i insert into child custom css:
    /*Add your own styles here:*/
    @media only screen and (max-width: 989px) {
    .html_mobile_menu_tablet .main_menu, .html_mobile_menu_tablet #header_main_alternate, .responsive #header .main_menu ul, #top #menu-item-search { display: block; }
    .av-main-nav li { display: none; }}

    @media only screen and (max-width: 990px) {
    li#menu-item-search a { font-size: 24px!important; }
    nav.main_menu { float: right; margin-right: 15%; }}

    @media only screen and (max-width: 767px) {
    .main_menu {
    left: auto !important;
    position: absolute !important;
    right: -90px !important;
    top: -5px !important;
    }
    }

    #377192

    Hey aossi!

    You can use a Child Theme and define font size etc. to make sure all CSS settings are the same for all languages. If you use Quick CSS field instead, then only one language will be affected.

    Regards,
    Andy

Viewing 30 results - 14,821 through 14,850 (of 18,733 total)