Home>Support>Custom font issues

Custom font issues

Hello, I’ve added a custom font created through fontsquirrel, and implemented it to the custom css as per your instructions:

at this url:

Fonts in WordPress 4.0

but the font is not showing up at all. Can you give me some input / help please?

 

This is our free support forum. Replies can take several days. If you need fast email support, please purchase a SiteOrigin Premium license.

  1. 9 years, 3 months ago Private Message - Rudeeze Ceezy

    This is a private message.

  2. 9 years, 3 months ago Private Message - Magus Hi, I Work Here

    This is a private message.

  3. 9 years, 3 months ago Private Message - Rudeeze Ceezy

    This is a private message.

  4. 9 years, 3 months ago Magus
    Hi, I Work Here

    Hi Rudeeze Ceezy

    Everything looks correct with your CSS and the paths to the fonts. Please check the folder permissions for the created fonts folder. These should be 755.

    If this is set correctly then please try adding the following to your site’s .htaccess file

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

    Let us know how you get on

    Magus

  5. 9 years, 3 months ago Private Message - Rudeeze Ceezy

    This is a private message.

  6. 9 years, 3 months ago Magus
    Hi, I Work Here

    Hi Rudeeze Ceezy

    The footer can all be done with existing Widgets and some custom CSS. You will need to fix the image path for the logo as it is incorrect, it should be showing as an absolute url rather than a relative one.

    Create a menu for the footer at Appearance->Menus.

    Navigate to Appearance->Widgets.

    Add a Custom Menu Widget to your footer and assign the new menu to it.
    Add the SiteOrigin Social Media Icons Widget to the footer and add your Social icons in it. You can also set the styling of the icons here.

    Once this is done I can have a look and give you the custom CSS you will need to give it the same appearance as the original site.

    Magus

  7. 9 years, 3 months ago Magus
    Hi, I Work Here

    Hi Rudeeze Ceezy

    You are using a different font to the one on the original site. The default weight for the font you are using is how you see it. The original uses Proxima Nova for the font. The closes of the family you are using would be Bebas Neue Light.

    Magus

  8. 9 years, 3 months ago Private Message - Rudeeze Ceezy

    This is a private message.

  9. 9 years, 3 months ago Private Message - Rudeeze Ceezy

    This is a private message.

  10. 9 years, 3 months ago Magus
    Hi, I Work Here

    Hi Rudeeze Ceezy

    You are correct, the titles are in Bebas Neue, but the paragraph text is in Proxima Nova.

    With the footer, what he has actually done is to move the header to the bottom of the page. We will need to do the same for the responsive menu.

    Please remove the CSS to hide the masthead and move your Footer Widgets to the header sidebar in Appearance->Widgets.

    Then navigate to Appearance->Theme Settings->Navigation and enable the options for responsive menu and Mobile Menu.

    Once done We can look again and fix the display with custom CSS.

    Magus

  11. 9 years, 3 months ago Rudeeze Ceezy

    i believe i’ve done everything you’ve asked. Can you look again now? As I don’t see the social media widget, nor the visual editor widget in the header.

    thanks

  12. 9 years, 3 months ago Magus
    Hi, I Work Here

    Hi Rudeeze

    You have made a change to the theme CSS. Please re-edit the file and find this entry

    #masthead {
        display: none;
    }
    

    and change it to

    #masthead {
        display: block;
    }
    

    Then navigate to Appearance->Theme Settings->Layout and change the Masthead Layout to Default Layout.
    Navigate to the Logo Page and ensure you do not have any Logo image set there, if you do please remove it.

    Magus

  13. 9 years, 3 months ago Private Message - Rudeeze Ceezy

    This is a private message.

  14. 9 years, 3 months ago Private Message - Andrew Misplon Hi, I Work Here

    This is a private message.

  15. 9 years, 3 months ago Magus
    Hi, I Work Here

    Hi Rudy

    I see you have started from scratch in order to get the Header to be visible again, hopefully you have not lost too much.

    This is the CSS which will laign the Header to the bottom and adjust the layout to match the existing site

    /* Hide Footer */
    #masthead .hgroup .logo, .layout-full #colophon {
        display: none;
    }
    
    /* Fix Masthead to bottom of screen */
    #masthead {
        position: fixed;
        bottom: 0px;
        background-color: #fff;
        z-index: 9999;
        width: 100%;
    }
    
    /* Align Logo Image */
    #masthead .hgroup #header-sidebar aside:first-of-type.widget {
        left: 0px;
        top: 0px !important;
    }
    
    /* Resize Header Sidebar to full width */
    #masthead .hgroup #header-sidebar {
        width: 100%;
        max-width: 100% !important;
        left: 0px;
        display: block;
    }
    
    /* Resize Masthead to full width */
    #masthead .full-container.hgroup {
        max-width: 100% !important;
    }
    
    /* Right Align Social Widget */
    #masthead .hgroup #header-sidebar aside:last-of-type.widget {
        float: right;
    }
    
    /* Align widgets to the middle of the header */
    #masthead .hgroup #header-sidebar aside.widget {
        top: 50%;
    }
    
    /* Adjust Social Icons */
    #masthead .hgroup a.ow-button-hover {
        font-size: 2em;
        margin-top: 0px;
        margin-right: 0px;
        padding-top: 0px;
        padding-left: 0px;
        padding-right: 0px;
    }
    

    We will need to work out the responsive side for small screens but if you can add this I can get back to you with the rest afterwards.

    Magus

  16. 9 years, 3 months ago Rudeeze Ceezy

    Hey Magus, I figured I would start working out the woocommerce part of the project while waiting, and just decided to start over, as i may have made changes to some php, but don't remember where, so I just started from scratch. I've made those changes. Let me know what you think.

    Rudy.

  17. 9 years, 3 months ago Rudeeze Ceezy

    also, how / who do i send in an extra donation to for all your help, and how much is necessary so i can get some rapid response times? Not that you're not fast, :)
    I just want to get him off squarespace asap!

  18. 9 years, 3 months ago Magus
    Hi, I Work Here

    Hi Rudy

    Next section to make the header widgets behave the same way as the original site, please add to your custom CSS

    @media all and (max-width:680px) {
    #sow-social-media-buttons-2 {
        display: none !important;
    }
    #masthead .hgroup.full-container {
    padding-top: 10px;
    padding-bottom: 10px;
    }
    }
    

    The premium support is prioritized by the donation amount, your current donation is $15. The maximum total donation is $50 putting customers who have paid more above you in the queue. the 450 donation also gives them unlimited use of the theme on as many live sites as they wish and notifies us through our support software that a thread has been created.

    It really is not necessary to make a further donation but if you wanted to you can add to your purchase here

    https://gumroad.com/l/nnpF

    Once done please email us at [email protected] letting us know what you have done, including the email address you made your original purchase with and we will update your license and account accordingly.

    Magus

  19. 9 years, 3 months ago Private Message - Rudeeze Ceezy

    This is a private message.

  20. 9 years, 3 months ago Rudeeze Ceezy

    i’ve added the css for the headers widget code, but it does not seem to do anything.
    Thanks!

  21. 9 years, 3 months ago Magus
    Hi, I Work Here

    Hi Rudy

    Thank you very much, the donation was a lot more than was needed. You will not really see the difference the last CSS entry made as it is designed to specifically target small screen devices like smaller tablets and mobile phones. If you resize your browser window down to make it narrower you will see that it removes the social icons and adjusts the padding for the other items to keep the header looking the same.

    Magus

  22. 9 years, 3 months ago Rudeeze Ceezy

    oh ok. Magus, for some reason, the only way i can get the slider to be full width is to do it through appeareance, theme settings, home, stretch. I really don’t want to use that there, as i’ll have a age verification plugin for home page. Gallery page is supposed to be the home page, and when i add entry to gallery, it is not full width as it is on the other settings. And there is a white space on every page up top for some reason.

    also, on shop page it is still showing title, even though I’ve selected full page no title.

    thanks magus

  23. 9 years, 3 months ago Rudeeze Ceezy

    all the other pages should be fixed footer, just like at :

    http://www.praxisvapors.com/contact/
    see how it scrolls only when there is contact to scroll? I thought this was working on homepage but it doesent seem to be.

    thank you.

  24. 9 years, 3 months ago Private Message - Rudeeze Ceezy

    This is a private message.

  25. 9 years, 3 months ago Magus
    Hi, I Work Here

    Hi Rudy

    I have tried to log in using the details provided but have been unsuccessful.

    Would it be possible for you to create a temporary admin account for us so we can log in and take a look? You can create the account with the following email address:

    [email protected]

    Just navigate to Users > Add New in your WordPress admin. Enter siteorigin for the username and [email protected] for the email address. Make sure you’ve selected Administrator for the role and enabled the “Send Password” field so we receive the details.

    Once we’re finished taking a look, you can delete this account. We’ll let you know when to do that.

    Thanks

    Magus

  26. 9 years, 3 months ago Private Message - WordPress

    This is a private message.

  27. 9 years, 3 months ago Private Message - Rudeeze Ceezy

    This is a private message.

  28. 9 years, 3 months ago Magus
    Hi, I Work Here

    Hi Rudy

    I have had a look and converted your home page to the gallery including adding the slider as 100% width. The issue with doing this, as with using the built in page slider option, is that because the slider is responsive it tends to shrink the height of the image to match the width.

    I don’t think you will achieve the design you are looking for by using the Meta-Slider for your gallery as I do not believe it can be set to a fixed height and I have been unable to find a responsive slider which allows this as an option. I will need to discuss with Andrew and see if there are any alternate ways of achieving what you need.

    Magus

  29. 9 years, 3 months ago Private Message - Rudeeze Ceezy

    This is a private message.

  30. 9 years, 3 months ago Andrew Misplon
    Hi, I Work Here

    Hey Rudy

    If you’d prefer another slider, like Revolution, it’s possible to use a child theme to integrate it into the same position as Meta Slider. Let us know if you need a hand with that.

  31. 9 years, 2 months ago Private Message - Rudeeze Ceezy

    This is a private message.

  32. 9 years, 2 months ago Private Message - Rudeeze Ceezy

    This is a private message.

  33. 9 years, 2 months ago Andrew Misplon
    Hi, I Work Here

    Thanks for the feedback, much appreciated.

    Revolution

    If you have Revolution Slider installed and a slider created, please, send us the shortcode for the slider. I’ll create a child theme to display that slider once I have the shortcode.

    Contact Form 7

    Try the following at Appearance > Custom CSS. Edit as required:

    /* Contact Form 7 */
    
    div.wpcf7 {
    	margin-bottom: 100px;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="url"],
    input[type="tel"],
    .wpcf7 input[type="number"],
    .wpcf7 input[type="date"],
    .wpcf7 input[type="password"],
    .wpcf7 input[type="search"],
    .wpcf7 select[multiple],
    .wpcf7 textarea {
      -moz-border-radius: 3px;
      -webkit-border-radius: 3px;
      border-radius: 3px;
      -moz-transition: 0.3s;
      -o-transition: 0.3s;
      -webkit-transition: 0.3s;
      transition: 0.3s;
      background: #f6f6f7;
      border: 1px solid #eaeaeb;
      color: #acaeaf;
      line-height: normal;
      padding: 0.6429em 0.7143em;
      -webkit-appearance: none;
    }
    
    .wpcf7 input[type="text"]:focus,
    .wpcf7 input[type="email"]:focus,
    .wpcf7 input[type="url"]:focus,
    .wpcf7 input[type="password"]:focus,
    .wpcf7 input[type="search"]:focus,
    .wpcf7 textarea:focus {
      background: #FFF;
      color: #5a5d60;
      outline-style: none;
    }
    
    .wpcf7 textarea {
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      overflow: auto;
      /* Removes default vertical scrollbar in IE6/7/8/9 */
      padding: 0.7143em;
      vertical-align: top;
      /* Improves readability and alignment in all browsers */
    }
    
    .wpcf7 p {
      font-weight: 600;
      margin-bottom: 1.33929em;
    }
    
    .wpcf7 p span {
      font-weight: 400;
    }
    
    .wpcf7 p span[style] {
      display: block !important;
    }
    
    .wpcf7 p .wpcf7-form-control-wrap, .wpcf7 p .wpcf7-form-control {
      display: block;
    }
    
    .wpcf7 p .wpcf7-not-valid-tip {
      font-size: 1em;
      line-height: 1.78571em;
      background: #ffdfe0;
      border-top: 1px solid #c89797;
      border-bottom: 1px solid #c89797;
      color: #790000;
      margin-top: 0.5em;
      padding: 0.44643em;
    }
    
    .wpcf7 p select.wpcf7-select option::selection {
      background: red;
    }
    
    .wpcf7 p span.wpcf7-list-item-label {
      margin-right: 0.3125em;
    }
    
    .wpcf7 p span.wpcf7-list-item {
      margin: 0 0.75em 0 0;
    }
    
    .wpcf7 p .wpcf7-form-control.wpcf7-submit {
      float: left;
      margin: 0;
    }
    
    .wpcf7 p img.ajax-loader {
      float: left;
      display: block;
      margin: 0.75em 0 0 1.5em;
    }
    
    .wpcf7 .wpcf7-validation-errors {
      background: #ffdfe0;
      border: none;
      border-top: 1px solid #c89797;
      border-bottom: 1px solid #c89797;
      color: #790000;
      float: left;
      margin-top: 0.44643em;
    }
    
    .wpcf7 .wpcf7-response-output {
      font-size: 1em;
      line-height: 1.78571em;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      clear: both;
      margin: 0.44643em 0 0;
      padding: 0.89286em;
      width: 100%;
    }
    
    .wpcf7 .wpcf7-mail-sent-ok {
      background: #fffbcc;
      border: none;
      border-top: 1px solid #e6db55;
      border-bottom: 1px solid #e6db55;
      color: #5a5d60;
      float: left;
      margin-top: 1.78571em;
    }
    
    .wpcf7:after {
      content: ".";
      clear: both;
      display: block;
      height: 0;
      visibility: hidden;
    }
    
  34. 9 years, 2 months ago Private Message - Rudeeze Ceezy

    This is a private message.

  35. 9 years, 2 months ago Andrew Misplon
    Hi, I Work Here

    Thanks for your feedback and the wait :)

    The contact form is different to before. The easiest way to see the difference would be to open the contact page in one tab then open it again in a new tab. In the new tab remove the CSS I sent. That way you’ll have a before and after, you should be able to see the difference then. I can send a screenshot if needs be.

    Revolution is a premium product. We try to help out with as much as possible but with specific plugin questions like cropping in Revolution it would be best to seek out a little help from the plugin author.

    Try adding the following to Appearance > Custom CSS to sort out the background issue:

    body.layout-full {
      background-color: #fcfcfc;
    }
    
  36. 9 years, 2 months ago Rudeeze Ceezy

    thank you. can you give Me a custom css code that will make all my submit form buttons a black square button? such as ad to cart and checkout etc and submit for contact form?

    also I noticed on some pages with a submit button sometimes I can't see it or scroll down low enough to see it. also, what's the css to make the background pages white to match the white masthead, as it seems the pages have a gray background.

    thank you again.

    Rudy

  37. 9 years, 2 months ago Andrew Misplon
    Hi, I Work Here

    Thanks for the wait.

    Please, can you let me know which pages you’re seeing the problem of not being able to scroll to the bottom of the form. On the contact page this was previously an issue but I corrected in the CSS I sent previously.

  38. 9 years, 2 months ago Andrew Misplon
    Hi, I Work Here

    Try the following to change your WooCommerce buttons:

    /* Remove Vantage WooCommerce Button Styling */
    
    .woocommerce #page-wrapper .button {
    background: #000; /* Set this to your button background color */	
      border-top: initial;
      border-left: initial;
      border-right: initial;
      border-bottom: initial;
    color: #fff !important;
    cursor: pointer
      filter: initial;
      -webkit-border-radius: initial;
      -moz-border-radius: initial;
      border-radius: initial;
      -webkit-box-shadow: initial;
      -moz-box-shadow: initial;
      box-shadow: initial;
      width: initial;
      text-decoration: initial;
      /* Improves usability and consistency of cursor style between image-type 'input' and others */
      cursor: initial;
      /* Corrects inability to style clickable 'input' types in iOS */
      -webkit-appearance: none;
      line-height: initial;
      text-shadow: initial;
    }
    
  39. 9 years, 2 months ago Andrew Misplon
    Hi, I Work Here

    Try the following for Contact Form 7:

    input[type="submit"].wpcf7-submit {
      border: none;
      background: #000 !important;
      color: #fff;
      -webkit-box-shadow: none;
      -moz-box-shadow: none;
      box-shadow: none;
      text-shadow: none;
    }
    
  40. 9 years, 2 months ago Private Message - Rudeeze Ceezy

    This is a private message.

  41. 9 years, 2 months ago Andrew Misplon
    Hi, I Work Here

    Awesome, glad to hear that helped. Thanks for your support, much appreciated.

  42. 9 years, 2 months ago Private Message - Rudeeze Ceezy

    This is a private message.

  43. 9 years, 2 months ago Andrew Misplon
    Hi, I Work Here

    The challenge with not seeing content at the bottom of the page is the masthead is fixed position but there is no offset to compensate. Try adding the following to Custom CSS:

    /* Body */
    
    body {
    margin-bottom: 30px;
    }
    

    That’s right, I think we chatted about the WooCommerce single page layout before. I did take a look and it’s unfortunately a little more than I can help with at the moment in terms of CSS. Sorry I don’t have better news there.

  44. 9 years, 2 months ago Private Message - Rudeeze Ceezy

    This is a private message.

  45. 9 years, 2 months ago Andrew Misplon
    Hi, I Work Here

    Sorry to hear about the hassle. Have you made progress? I’m not able to replicate the error. Thanks.

Replies on this thread are closed. Please create a new thread if you have a question, or purchase a SiteOrigin Premium license if you need one-on-one email support.

Get The Most Out of SiteOrigin with SiteOrigin Premium

Find Out More