• Resolved farkonas

    (@farkonas)


    Hi, liked the theme enough to buy the Pro version and setup my personal site, but I am having a couple of small issues:

    1. For some reason a lot of times – but not every time, which is infuriating – the site does not display the FontAwesome characters/icons that are used in the Features section and the social icons in the footer. Empty “boxes” are displayed instead, as if the font hasn’t loaded with the rest of the site. If I click on a page of the Features section and go back to the site, it’s all displayed normally. Different browsers and different devices offer different results in this. It might be something related to caching or preloading…? Is there a way I can make sure the icons are always displayed correctly?

    2. I use the slider section as a static one and, as a result, I would like to have the arrows of going to the next/previous slider removed. Is there a way to do this via CSS code?

    3. I created custom links for a navigation bar at the top of the site and it all works great but, because the first item in that navbar is the “About” section, the site adds that “Home” icon to it. The name of the site serves as a “home button” anyway, so I would like to have that icon removed from “About”. Is there an easy way to do it?

    Thank you in advance and congrats on a truly nice theme! It looks amazing on iPad Pros and 4K/5K monitors as well as on iOS/Android smartphones, which is something that I did not often find to be the case in personal WP themes. Keep up the good work!

    • This topic was modified 5 years, 3 months ago by farkonas.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author CrestaProject

    (@crestaproject)

    Hi @farkonas
    first of all thanks for the compliments on the theme, very appreciated ??
    About your questions:
    1) I took a look at your site and the reason why the icons are not shown is because the fonts are blocked in advance.
    Usually this block is easily circumvented by inserting this code into your .htaccess file:

    
    <IfModule mod_headers.c>
      <FilesMatch "\.(ttf|ttc|otf|eot|woff|woff2|font.css|css|js)$">
        Header set Access-Control-Allow-Origin "*"
      </FilesMatch>
    </IfModule>
    

    If you are unable to add it, ask your hosting, it will surely help you ??

    2 and 3) To remove the slider arrows and the “home” icon I can provide you with a CSS code. Go to your WordPress Dashboard under “Appearance-> Customize-> Additional CSS” and paste this code:

    
    .flex-direction-nav,
    .main-navigation > div > ul > li > a i {
    	display: none;
    }
    

    This should work ??

    Thread Starter farkonas

    (@farkonas)

    Both worked like a charm, ironed out a few other wrinkles, everything looks good and loads fast now! Thank you for your help!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Small stuff help needed!’ is closed to new replies.