Forum Replies Created

Viewing 30 posts - 14,461 through 14,490 (of 34,625 total)
  • Author
    Posts
  • in reply to: Change the title color of a post category #1300600

    Hey 4m,
    Thank you for your patience, basically you can model this css to change the color of the single post title in the News category:

    #top .category-news h1.post-title a {
    	color: red;
    }

    2021-05-16_165412.jpg
    Please feel free to adjust the color to suit and change the category to yours, if you have any trouble adjusting to your needs then please link to your page where you would need to apply the changes.

    Best regards,
    Mike

    in reply to: Center Pagination numbers #1300598

    Hey argusnet,
    Thank you for your patience and the link to your page, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #main .template-blog .single-big .pagination {
        padding: 0;
        display: flex;
        justify-content: center;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Divider brings out another line on top #1300595

    Hey martin,
    Thank you for your patience and the link to your example, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    #main .main_color.el_before_av_hr + .main_color.av_default_container_wrap {
    	border: none;
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Events Calendar bug in the single event page #1300582

    Hi,
    Thank you for disabling the merging, I now see that you have an extra bracket that is breaking the following css and you have a space after the dot which indicates the class:
    2021-05-16_122333.jpg
    Please correct this for your CSS to correctly work.
    As for your new CSS snippet above, it is flawed so it will not work correctly.
    In CSS rules, after each comma, you need to fully specify the path to your target, writing
    , li:nth-child(5), li:nth-child(7), li:nth-child(8), li:nth-child(9), li:nth-child(10)
    will target every li:nth-child(x) on the page.
    Please try re-writing to be more specific.

    Best regards,
    Mike

    in reply to: Events Calendar bug in the single event page #1300556

    Hi,
    Thanks for your feedback, the css for the padding of the page and the margin for the time text should not interfere with each other as they are different elements, what you describe sounds like there is a missing bracket in your css elsewhere, but while you are using the merged css & js in the theme options I can not find the error, please disable this for now.
    Perhaps your issue on this site is similar to the issue you are having on your second site, on your second site the reason the scroll top display block css is not working is because you are using PHP comment out code in CSS code:

    // ----------------------------------------
    // SCROLL PAINIKE KÄNNYKÄLLÄ

    this is the correct way to comment out in CSS

    /* ---------------------------------------- */
    /* SCROLL PAINIKE KÄNNYKÄLLÄ */

    I see on your second site this occurs 10 times, so please correct this and clear your browser cache and the theme css merging as explained above.
    If you have also done this on your first site please also correct.

    Best regards,
    Mike

    in reply to: Textgröße in Topmenü ändern #1300507

    Hey diefleischerei,
    Vielen Dank für Ihre Geduld und den Link zu Ihrer Website. Bitte versuchen Sie dieses CSS in Ihrem Quick CSS:

    #header_meta #menu-item-779 > a {
    	font-size: 17px;
    }

    Die Schriftgröße beträgt jetzt 11px, und Sie haben nach 6px mehr gefragt, sodass der Code 17px anzeigt. Sie können ihn jedoch jederzeit anpassen.

    — Translated with Google —

    Thank you for your patience and the link to your site, please try this css in your Quick CSS:

    #header_meta #menu-item-779 > a {
    	font-size: 17px;
    }

    The font size is now 11px, and you asked for 6px more so the code says 17px, but feel free to adjust to suit.

    Best regards,
    Mike

    in reply to: Accordion toggles titles and content disappearing #1300506

    Hey amalina_daqscribe,
    Thank you for your patience and the link to your page, I tested your accordion with Chrome, Firefox, Edge on Windows 10 and made a video of an additional test linked below, but the accordion headers showed the title whether they were expanded or not and the content did show for each of the last 3 items. Please watch the video and let us know if this is the correct behavior and if you are still having this issue.

    Best regards,
    Mike

    in reply to: content slider links aren't working #1300505

    Hey bobfurgo,
    Thank you for your patience and the link to your site, I took a look at your A History of Giving content slider element, but all of the links seem to be working correctly for me, although I find it odd that they all start with this https://www.google.com/url?sa=D&q= but I did find one that was more “normal” so are you still having this issue?
    I tested with Chrome, Firefox, Edge on Windows 10

    Best regards,
    Mike

    in reply to: Mailchimp Newsletter Form #1300504

    Hi,
    Thank you for the feedback and the patience, I took a look at your footer but it doesn’t look like your screenshot:
    2021-05-15_165251.jpg
    I also tested your Mailchimp Signup Form code on my localhost in a code block on a page and in a sidebar widget but the gaps nor   showed:
    2021-05-15_165640.jpg
    I checked with Chrome, Firefox, & Edge on Windows 10, are you still seeing this issue?

    Best regards,
    Mike

    in reply to: Restricted access to pages and login personalization #1300503

    Hey cuccarini,
    Thank you for your patience and login, so as I understand where you are now, you like using user access manager to limit the access of the desired pages and you like loginpress to solve the login customization but the main issue seems to be that you would like to redirect uses after login, I found that loginpress has an addon for Login Redirects:
    2021-05-15_145330.jpg
    so perhaps this would be the easiest solution for you?
    The only other issue you seem to have is the customization of the login form, but when I check it seems to allow most everything to be customized:
    2021-05-15_150221.jpg
    2021-05-15_150618.jpg
    perhaps you didn’t see this option?
    2021-05-15_150833.jpg
    perhaps the change you wish to make is a part of the pro version or it is very small?

    Best regards,
    Mike

    in reply to: Massonry gallery not loading properly #1300497

    Hi,
    Thank you for the feedback and your patience, in your theme options I disabled the lazy loading and this seems to have solved the delay of the last masonry element:
    2021-05-15_124221.jpg
    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Events Calendar bug in the single event page #1300493

    Hi,
    Thank you for the feedback, your css for the third issue has the same specificity so in order for it to work you can add !important; tp it like this:

    #top #tribe-events-pg-template {
        max-width: 100%;
        padding: 30 !important;
    }

    or you can increase the specificity by adding an ID like this:

    #top #wrap_all #tribe-events-pg-template {
        max-width: 100%;
        padding: 30;
    }

    I’m not sure why you can’t find the zero padding css in your custom css or how it got into your merged css, but you could try disabling your Enfold Theme Options > Performance > JS & CSS file merging and compression and then at the bottom of the same page enable the Enfold Theme Options > Performance > Delete old CSS and JS files option and then check again.

    Best regards,
    Mike

    in reply to: Events Calendar bug in the single event page #1300319

    Hey Cloaker,
    Thank you for your patience and the link to your site, for the first issue with the time heading, it is caused by this css:

    .tribe-events-event-meta dt:not(:first-child) {
        margin-top: 16px;
    }

    so this is saying that in the tribe-events-event-meta block any dt that is not the first-child will get a 16px margin-top, which is these two elements:
    2021-05-14_063213.jpg
    In this case I believe the best solution would be this:

    .tribe-events-single-section.tribe-events-event-meta.primary dt:not(:first-child) {
        margin-top: 0;
    }

    For your second question the code <h3 class="tribe-events-visuallyhidden"><?php _e( 'Event Navigation', 'avia_framework' ) ?></h3> is in the \wp-content\themes\enfold\config-events-calendar\views\single-event.php file on line 145, you can try removing this if you wish. I’m not sure if it is used for anything else, but the code was originally recommended by the plugin’s Themer’s Guide for the Pro version, from what I can tell. But I’m not an expert with this plugin 🙂
    For your third issue, the padding seems to be set to zero by this css in your merged css:

    #top #tribe-events-pg-template {
        max-width: 100%;
        padding: 0;
    }

    which is overriding the plugin padding:
    2021-05-14_071117.jpg
    please try looking for this in your custom css and remove it.

    Best regards,
    Mike

    in reply to: Learndash sorting quiz element not working #1300302

    Hi,
    Thank you for sharing your solution, glad to hear you were able to sort this out.
    We will close this now, Thank you for using Enfold.
    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Demo import error #1300300

    Hi,
    Thank you for sharing, glad to hear this helped you. We will go ahead and close this thread as it is about 2 years old now, but it will remain searchable should others have a similar situation.

    Best regards,
    Mike

    in reply to: Learndash sorting quiz element not working #1300129

    Hi,
    Thank you, I was able to login and see the sorting element now, this looks like it is a javascript element but I don’t see any javascript errors in the browser console. I took a look at your theme settings and plugins but I don’t see anything that could be changed there to help. I note that you are using Enfold v4.7.6.4 so perhaps updating to v4.8.2 would help since WordPress has changed the version of jQuery Migrate that is used.
    If you can not update your version of Enfold automatically try to download the newest version from Theme Forest and rename your current theme folder to “enfold-old” via ftp then upload the new “enfold” folder and check that your site is working correctly.
    Should for some reason you wish to roll-back to the old version, it’s easy to do, simply rename the new “enfold” folder to “enfold-new” via ftp and then rename “enfold-old” to “enfold” then refresh your page.
    Once you are happy you can delete the “enfold-old” folder via ftp, (not the WP theme page)
    Please don’t try to overwrite the theme folder, as this will leave old files behind and cause errors.

    Best regards,
    Mike

    in reply to: header at the center #1300108

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Learndash sorting quiz element not working #1299922

    Hey lernerleben,
    Thank you for your patience and link to your site but I was not able to view or login as I was getting the ERR_TOO_MANY_REDIRECTS error, please try disabling any caching plugins and any security plugins to see if that helps. In your opening post it sounds like you are saying that the LearnDash sorting element is not working with Enfold or any other theme, is that what you meant? If that is the case please try asking LearnDash for suggestions, LearnDash is a paid plugin that we do not have access to and we don’t have an official way to support, while we try to help where we can if the element is not working for any themes it doesn’t sound promising.

    Best regards,
    Mike

    in reply to: Area Widget nelle Sidebar non funzionano? #1299892

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: header at the center #1299891

    Hi,
    Thanks for the login, this was because for the size of your menu you had the mobile menu setting too small, I changed it for you to the 990px:
    2021-05-12_054008.jpg
    this now behaves like your example site.

    Best regards,
    Mike

    in reply to: header at the center #1299653

    Hi,
    Please link to your site and provide some mockups of what you are trying to achieve.

    Best regards,
    Mike

    in reply to: Image in sidebar latest news widget #1299651

    Hi,
    Glad to hear this helped, for the news headline please try this:

    .sidebar .newsbox .news-headline {
        overflow: visible;
    }

    I believe this will work without !important; but you could try that also.

    Best regards,
    Mike

    in reply to: Change size of a Qty box on product page #1299359

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    Hi,
    Thank you for the login, I didn’t find the css that goes with the jQuery solution linked above on your site, but I disabled the jQuery in your child theme functions.php so I could test via browser injection and found that your header css in the WordPress > Customize > Additional CSS field sets the header and other elements to “flex” so this script would not work. Luckly Guenni007 had posted an Alternative Method a little further down in the same thread and with a little modification it works for your site, except that your header css makes the header transparent so when it shows further down the page it is still transparent, what color do you want the header when it is not at the top of the page? Is this to only work on the homepage? I notice that the topbar and menu text is different colors on your other pages but still using transparency so these would also have to be accounted for?

    Best regards,
    Mike

    in reply to: Change size of a Qty box on product page #1299333

    Hi,
    Very good, shall we close this then?

    Best regards,
    Mike

    in reply to: A .png badge on the border between color sections #1299194

    Hey Matjaz,
    Thank you for your patience and thanks for the link to your site, although I didn’t see a link to your badge. Anyways the way this is done is by placing your Trip advisor badge code in the lower color section and using a negative top margin to move it up.
    When I check your site the top and bottom color sections are using the same custom ID: tour-detail-section please note that you should ensure that any ID is only used once on any page.
    I made a mockup of your page to demonstrate another approach using css if you only want to add the image and no link, in that case this css would work as long as there are no duplicate custom IDs:

    #tour-detail-section:before {
        background-image: url('https://your-site.com/wp-content/uploads/2021/05/top-rated-trip-advisor.png');
        background-size: 120px 100px;
        display: inline-block;
        width: 120px; 
        height: 100px;
        content:"";
        float:right;
        margin-right:30%;
        margin-top: -50px;
    }

    You would need to adjust the url to the image.
    2021-05-09_175933.jpg

    Best regards,
    Mike

    in reply to: Error message while trying to update #1299189

    Hi,
    Glad to hear Ismael was able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Problem with theme Enfold #1299187

    Hey massimo_mocilnik,
    Thank you for your patience the issues you post about above all sound like issues from an old version of Enfold, WordPress, PHP, so please ensure that you are using:
    Enfold v4.8.2
    WordPress v5.7.1
    PHP v7.4
    Then disable all other plugins.
    As for the homepage fatal error, we would need more info.
    As for the 600MB dynamic_avia folder, first disable the options Enfold Theme Options > Performance > JS & CSS file merging and compression then at the bottom of the same option page enable Enfold Theme Options > Performance > Delete old CSS and JS files then save and reload the frontend a few times for it to try to remove the files and then check again.
    you can then delete any files like:

    avia-merged-styles-386a4ca6ee9936c386d43fef6809eaa6---6082a4f5e97d9.css
    avia-footer-scripts-31f47fe59f4817f8f41aae59e68fa954---606c2a088d948.js

    but save enfold.css or enfold_child.css
    For further questions we will need admin access to the site.

    Best regards,
    Mike

    in reply to: Change color of bold text #1299183

    Hey Misko,
    Thank you for your patience I can help you define a different color for your bold text with css, but I would like to point out that there are typically two ways that “bold” is expressed, the strong tag and the b tag, the strong tag is more common these days, but some people and older plugins might use the b tag. Also since you didn’t link to your site I can’t tell if you are using any other plugins that might be affecting the “bold” color or any custom font styling, which is what occurs on this site, when we look at our side we see this:
    2021-05-09_143627.jpg
    because we see the Enfold side, but from your side, you see the additional style added by the BB Press plugin:
    2021-05-09_143930.jpg
    Anyways, my point is that other things can be at play and it can be difficult to blindly write some css, but I will try :)
    So this example will change strong tag to a rust color #c3512f in the #main which is below the #header. There is a possibility that an H1 link that has a strong tag may be a different color, and if that is the case please link to the page you are having trouble with.
    Please try this css in the WordPress > Customize > Additional CSS field as it has the highest priority:

    #top #wrap_all #main strong,
    #top #wrap_all #main b {
    	color: #c3512f;
    }

    After applying the css, please clear your browser cache and any caching or minifying plugins and check.

    Best regards,
    Mike

    Hi,
    Glad to hear that you have this sorted out, we will close this now. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 30 posts - 14,461 through 14,490 (of 34,625 total)