Forum Replies Created

Viewing 15 posts - 3,826 through 3,840 (of 8,657 total)
  • Author
    Posts
  • in reply to: How can I remove line on side of page copy? #74505
    wensolutions
    Keymaster

    Hello @heather23,

    First of all thank you very much for buying the pro version of the theme.

    Now to remove the grey vertical bar on the left side of the pages use below-given CSS.

    For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.

    .entry-content-wrapper {
        border-left: none;
    }

    Hope this helps.

    Best Regards!!

    in reply to: How to focus the "travel eye team" widget ? #74473
    wensolutions
    Keymaster

    Hello @modele3,

    Glad to help you.

    If you have any issues further then please let us know.

    Thank you.

    Regards!!

    in reply to: Blog Question & Background Question #74461
    wensolutions
    Keymaster

    Hello @emanimama,

    First of all thank you very much for using the pro version of the theme.

    The query related to the category is not quite clear but according to our assumption, you want to remove the blog text that appears on the blog post upon hovering over the posts.

    So if this is what you meant then you can do so by adding below-given CSS by going to Admin Panel > Appearance > Customize > Additional CSS.

    .blog .post-content h2 a {
        display: none;
    }

    If not then please explain your query further with the proper screenshot and we will help you further.

    Not to make the content section transparent use below given CSS.

    .page #main {
        background: transparent;
    }

    Hope this helps.

    Best Regards!!

    Have a good day 🙂 .

    in reply to: Responsive Lightbox & Gallery Plugin #74455
    wensolutions
    Keymaster

    Hello @micha009,

    First of all thank you very much for using the pro version of the theme.

    For your information, we have not done any sorts of testing of the plugin you have mentioned with the theme. So we could not exactly say what is exactly creating the issue.

    Also, since the issue is not related to the theme we could not do much about this and as much as we would love to help you with this, we are unable to do so as it falls beyond the support we offer for our product 🙂 .

    Thank you.

    Regards!!

    in reply to: Help!! Primary Menu no longer working on iPhone! #74449
    wensolutions
    Keymaster

    Hello @thegrandmerke,

    Glad that your issue is finally resolved 🙂 .

    Any further issues are always welcome.

    We would also really appreciate if you could help us by rating our theme by following the link given below:

    https://wordpress.org/support/theme/graduate/reviews/

    Thank you.

    Regards!!

    in reply to: How to focus the "travel eye team" widget ? #74447
    wensolutions
    Keymaster

    Hello @modele3,

    To resolve your issue please use below given CSS.

    .wt-members-list {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    Hope this helps.

    Regards!!

    in reply to: Help!! Primary Menu no longer working on iPhone! #74446
    wensolutions
    Keymaster

    Hello @thegrandmerke,

    Can you please once follow given steps to resolve the issue.

    1. At first please deactivate the plugin “Digg Digg” and “Add to Any” plugins and verify.
    2. If above does not work, here’s the quick fixing for the site:

    body {
       position: relative !important;
    }

    If this does not solve the issue then please provide your login detail in the email address given below:

    wensolution@gmail.com

    Thank you.

    Regards!!

    in reply to: Removing Arrow in Sidebar Menu titles #74445
    wensolutions
    Keymaster

    Hello @mcmolter,

    To remove the arrow that you have mentioned please add below-given CSS by going to Admin Panel > Appearance > Customize > Additional CSS.

    #sidebar-primary .widget-title::after, #sidebar-secondary .widget-title::after {
        border-top: none;
    }

    Hope this helps.

    Regards!!

    in reply to: slider not showing content #74444
    wensolutions
    Keymaster

    Hello @amina,

    Thank you very much for using the theme 🙂 .

    Also, we are very glad that you figured out the issue by yourself.

    If you have any issues further then kindly let us know.

    Thank you.

    Regards!!

    in reply to: Custom icons/links in the tophead #74443
    wensolutions
    Keymaster

    Hello @aack,

    No, you will only be able to display the icon in the Social menu location at top header.

    However, there is still Quick link section where you can simply include the custom links only without having to display the icon. For this create the menu including the links and assign it to location “Quick Links menu”.

    Hope this helps.

    Best Regards!!

    in reply to: Submenu disappears on hover #74442
    wensolutions
    Keymaster

    Hello @aack,

    Glad we could help you 🙂 .

    If you have any issues further then please let us know.

    Also, we would really appreciate if you could help us by rating our theme by following the link given below:

    https://wordpress.org/support/theme/education-hub/reviews/

    Hope this helps.

    Regards!!

    in reply to: Help!! Primary Menu no longer working on iPhone! #74441
    wensolutions
    Keymaster

    Hello @thegrandmerke,

    Yes we will definitely contact you as soon as the issue is fixed.

    Thank you.

    Regards!!

    wensolutions
    Keymaster

    Hello @modele3,

    Glad to help you.

    let us know if you have any confusion further.

    Thank you.

    Best Regards!!

    in reply to: Help!! Primary Menu no longer working on iPhone! #74411
    wensolutions
    Keymaster

    Hello @thegrandmerke,

    We will definitely look for the issue in I-phone and release the update fixing the issue if found.

    Hoping for the co-operations.

    Thank you.

    Regards!!

    in reply to: Change Site Title & Site Tagline Font #74410
    wensolutions
    Keymaster

    Hello,

    First of all our sincere apology for the delay in replying to you.

    You cannot only rely on TTF font format for the web. You need to convert TTF font format to eot, svg, woff, and woff2 which you can easily convert from online font converter tools like

    https://onlinefontconverter.com/

    Here please check font-face checkbox too, which will provide CSS to import your font.

    For this create a child theme by using the plugin like given below:

    https://wordpress.org/plugins/wp-child-theme-generator/

    Now, place your font files that are converted by online converter inside your child theme by creating a folder name “font“. Copy the CSS inside the file font.css generated by online converter tools and paste it inside child theme style.css file.

    Now you need to change the URL of the CSS you copied

    @font-face {
      font-family: 'Example';
      src: url('font/Example.woff') format('woff'),
           url('font/Example.ttf') format('truetype'),
           url('font/Example.svg#ArialMT') format('svg');
      font-weight: normal;
      font-style: normal;
    }

    As you can see, we have added “font” in URL for importing the font inside font folder.

    This steps can be very tricky but if you follow the step thoroughly then you can achieve what you desire but for changing the font family of your site title and description you need to add CSS providing the font family for that exact classes.

    Hope you will replicate the steps easily.

    Best Regards!!

Viewing 15 posts - 3,826 through 3,840 (of 8,657 total)