Forum Replies Created

Viewing 30 posts - 1,681 through 1,710 (of 1,778 total)
  • Author
    Posts
  • in reply to: Submenu not showing Up #782381

    Hi simonac,

    So sorry for the late reply. Do you still need help with this? I can see the submenu of Arts&More. 

    Please do let us know if you still need help! :)

    Best regards,
    Sarah

    in reply to: submenu color #782373

    You’re welcome. I’ll close this thread, and see you in the forums, then.

    Cheers!
    Sarah

    in reply to: Tab Section Width Limit? #782372

    Hi danldurall,

    Can you try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    .av-tab-section-tab-title-container { min-width: 1310px; }

    I’ll also see if we can fix this bug. But for now, can you try that?

    Best regards,
    Sarah

    in reply to: Urgent: Changing menu doesn't work #782350

    Hey Michael,

    I checked your site, but, sorry, I can’t seem to find the blue menu color you’re talking about. Do you still need help with this? Can you perhaps show us a screenshot of the problem?
    Thank you.
    Sarah

    in reply to: submenu color #782345

    Hi!

    As of now, styling active menu links has to be done via Quick CSS.  If you like, you can request a feature or vote for requested features here: https://kriesi.at/support/enfold-feature-requests/

    Your site looks lovely!  Is there anything else we can help you with?

    Best regards,
    Sarah

    in reply to: submenu color #782278

    Hey M,

    You can change the setting by adding code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file. How would you like it to be styled?

    You can use code like this:

    .sub-menu .current-menu-item > a {
    color: white !important;
    background-color: red !important;
    }
    

    I hope that helps!
    Sarah

    Hi wizard247,

    It seems like you have the website on maintenance mode now. Can you give us temporary login access so we can take a look?

    Best regards,
    Sarah

    in reply to: Fonts bug #782185

    Hi! Thank you for sharing your solution. Other people may find this helpful if they encounter a similar problem.

    If you’d like, you can can request this to be included in future releases here: https://kriesi.at/support/enfold-feature-requests/

    For any other questions or issues, feel free to post them here on the forum and we will gladly try to help you.

    Cheers!
    Sarah

    in reply to: Tab Section Width Limit? #782179

    Hey danldurall,

    I see that you have the div set to have a minimum width of 1306px. When I changed the min-width to 1310px, the section extends, and none of the icons drop. Can you try changing the min-width of your Tab Section and let us know what happens?

    Best regards,
    Sarah

    in reply to: Thumnails on search result page. #782164

    Hey d,

    When you follow Ismael’s instructions in that thread, instead of this:
    echo "<div class='search-thumb'>".$thumb."</div>";

    Use this:
    echo "<div class='search-thumb'><a title='".the_title_attribute('echo=0')."' href='".get_permalink()."' $markup>".$thumb."</a></div>";

    The second one has the link added to the thumbnail. :)

    I hope that helps!

    Sarah

    in reply to: Text Link Animation Text box #782163

    You’re welcome! Do let us know here in the forums if you need help with anything else.

    Cheers!
    Sarah

    in reply to: Breadcrumb Navigation #782160

    Hey mftonto2and3,

    You can turn on breadcrumbs by going to Enfold > Header> Header Title and Breadcrumbs. You can choose “Display Title and Breadcrumbs” or  “Display only breadcrumbs”. Is this what you were looking for?
    If you would like to insert breadcrumbs as shortcode, you can use the tutorial here: http://kriesi.at/documentation/enfold/inserting-breadcrumbs-as-shortcode/

    Best regards,
    Sarah

    in reply to: Text Link Animation Text box #782155

    Hey Chris,

    You can do this by adding something like this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    a:hover { text-decoration:underline; color: red; }

    You can change the color to your preferred color.
    That code applies that animation for ALL links in your website. You can be more specific, like this: 

    #top h1 a:hover { text-decoration:underline; color:red; }

    That only applies the animation for the word “R/GA” in your homepage.

    Which word/s exactly would you like to do this for?

    Best regards,
    Sarah

    • This reply was modified 7 years, 8 months ago by Sarah.
    in reply to: White bar underneath menu #782151

    Hey bkheld,

    This is happening because you header background image (roof-mirrored-cropped-1-1500×245.jpg) has a smaller height than your header div, and so the white background is visible. To fix this, please use an image that is at least 255 pixels in height, OR try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    .header_color .header_bg { background-position:bottom; }

    This still leaves a very thin white space between the header and the slider. It can serve as breathing space. But if you don’t like that space, you can add this code in Quick CSS as well:

    .html_header_top.html_header_sticky #top #wrap_all #main { padding-top:255px }

    I hope that helps!
    Sarah

    in reply to: Color section & Background Image on mobile #781695

    Hi! We’re glad you’ve figured it out. Please let us know here in the forums if you need help with anything else.

    Cheers!
    Sarah

    in reply to: Change behaviour of Active Menu item #781678

    Hey emfutte,

    In Enfold > Header > Header layout > Header style, please select Default so that the active menu item looks different. If you would like to make it look a specific way, then, yes, you can add CSS in the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file.

    How would you like it to look? Below is a sample code that makes the active menu item’s background color into red.

    li.current-menu-item>a {
    background: red !important;
    color: white !important;
    }
    

    I hope that helps!
    Sarah

    in reply to: Changing reply and read more links to button #781676

    Hey cvan,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file: 

    .more-link, .comment-reply-link {
        padding: 10px !important;
        font-size: 13px;
        min-width: 80px;
        background-color: #2c2c2c;
        border-color: #000;
        color: #fff;
    }
    

    Please change the background color and border color to the colors that match your website.

    I hope that helps!

    Sarah

    in reply to: Need to change photo size in RSS Feed #781633

    Hey Rob,

    To attach the 300×300 size image to it, we’ll just change the values in the fourth line so that it becomes this:

    function featuredtoRSS($content) {
    global $post;
    if ( has_post_thumbnail( $post->ID ) ){
    $content = '<div>' . get_the_post_thumbnail( $post->ID, array( ‘width’=>300, ‘height’=> 300 ), array( 'style' => 'margin-bottom: 15px;' ) ) . '</div>' . $content;
    }
    return $content;
    }
    add_filter('the_excerpt_rss', 'featuredtoRSS');
    add_filter('the_content_feed', 'featuredtoRSS');

    Can you try that out please? 

    Sarah

    in reply to: Mega Menu Hover Effects #781629

    Hey danldurall,

    If you look at our demo here, this is how the items under a “-” column are designed to behave.

    If you would like to change the hover effect, you can try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    .sub-menu li a:hover{
    background: #f8f8f8 !important;
    color:#000000 !important;
    }

    Best regards,
    Sarah

    in reply to: Mega Menu Issue #781607

    Hi,

    It seems that the plugin jQuery Updater is causing this issue. We’ve tried deactivating it, and the menu is now visible at it should be.

    Do you truly need this plugin in your site? :)

    Best regards,
    Sarah

    in reply to: Alt attribute #781589

    You’re welcome! Please let us know if you need further help, or if we can close this thread. Thank you!

    Best regards,
    Sarah

    in reply to: How to indent ordered list #781588

    Hey fairusd,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    ol { margin-left: 0px; }
    ul { margin-left: 0px; } 

    Please note that this removes the margin from ALL your ordered and unordered lists. Is that what you would like to do?

    The unordered list I can see right now is under item #2, so that will align with item #2. If you would like to align it with “How to Sign Up”, then you need to make sure it’s on a separate list from the numbered one.

    I hope that helps!
    Sarah

    in reply to: Possible to push down the button to align with text? #781586

    Hi,

    For the first method, you put it in the link’s style. I see that you had applied several styles:  margin: 0px; padding: 0px; display: inline-block; position: relative; overflow: hidden;

    Please add vertical-align:middle to the same place.

    Best regards,
    Sarah

    in reply to: Content Slider #781583

    Hey iamspud5,

    Yes. Most elements have an automatic padding or margin around them to give a balanced overall look, but we can definitely target them specifically to suit your preferences.

    Can we have a link to the page in question so we can take a closer look?
    Best regards,
    Sarah

    in reply to: Alt attribute #781569

    Hey Mark,

    If the image is a background image of the color section, then I’m afraid you can’t apply give it an alt attribute. If you insert an image inside the color section, then you can give that one an alt when you insert it

    I hope that helps!

    Sarah

    in reply to: Website will not load — spinning icon below logo. #781565

    Hey sarahbrownph,

    May we know which plugin broke it? And do you still need help with this? :)
    Thank you for using Enfold!

    Best regards,
    Sarah

    in reply to: Possible to push down the button to align with text? #781561

    Hey fairusd,
    Can you try applying this style to that link:

    vertical-align:middle;

    Or, you can also apply a Link CSS class when you insert the image. use something like “inline-button”, then in the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file, add this:

    .inline-button { vertical-align:middle; }

    For an explanation about why this happens, you can read this thread.

    I hope that helps!
    Sarah

    in reply to: Mega Menu Issue #781543

    Hi,

    Thank you for the correct credentials! We’ll take a look.
    Best regards,
    Sarah

    You’re welcome, and thank you for using Enfold!

    Do let us know here in the forums if you need help with anything else.

    Best regards,
    Sarah

    in reply to: Mega Menu Issue #781282

    Hey MyGirlFriday805,

    Sorry, but I can’t seem to be able to log in using the credentials you provided. Can you check them, please?

    Thank you!

    Sarah

Viewing 30 posts - 1,681 through 1,710 (of 1,778 total)