Google Maps

Discussion in 'Infoway WordPress Theme' started by pupwild, Jan 28, 2014.

  1. pupwild

    pupwild Member

    Joined:
    Jan 11, 2013
    Messages:
    126
    Likes Received:
    0
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
  3. pupwild

    pupwild Member

    Joined:
    Jan 11, 2013
    Messages:
    126
    Likes Received:
    0
    I downloaded the zip file for the theme. Went to install new theme, uploaded the zip, then it said it failed.
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  5. pupwild

    pupwild Member

    Joined:
    Jan 11, 2013
    Messages:
    126
    Likes Received:
    0
    I was able to update the theme but it screwed up a lot of settings. The font for the menu has changed, how can I change this? The items on the right side of the slider appear, I would like to remove these. How can I change the header fonts, please see pictures.
     

    Attached Files:

  6. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    1. To change the font of menu,
    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    #menu .ddsmoothmenu li a {
    font-family: symbol;
    } 
    In place "symbol" you can put font.

    2. To remove the caption tab of slider,
    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .showcase-thumbnail-container {
    display: none;
    } 
    3. To change the font of footer widget header,
    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    .footer .footer_widget h4 {
    font-family: symbol;
    }
    
    In place "symbol" you can put font.
    This will solve your issue.
     
  7. pupwild

    pupwild Member

    Joined:
    Jan 11, 2013
    Messages:
    126
    Likes Received:
    0
    I think I see what the problem is, is it possible that when I updated the theme, it removed my fonts that I had installed? How can I reinstall them with coding?
     
  8. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  9. pupwild

    pupwild Member

    Joined:
    Jan 11, 2013
    Messages:
    126
    Likes Received:
    0
    The menu items and header items changed font for some reason, I want to get it back to the rest of the page.
     

    Attached Files:

  10. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    You have added double css code for menu and footer.
    Search for code given below in the custom css (Appearance > Theme Option > Styling Option > Custom CSS)

    If you want "verdana" font. Then keep this font and remove other.

    #menu .ddsmoothmenu li a {
    font-family: verdana;
    }
    #menu .ddsmoothmenu li li a {
    font-family: verdana;
    }


    If you want "raleway" font. Then keep this font and remove other.


    #menu .ddsmoothmenu li a {
    font-family: raleway;
    }
    #menu .ddsmoothmenu li li a {
    font-family: raleway;
    }
    .footer .footer_widget h4 {
    font-family: raleway;
    }
    .footer-bottom .copyrightinfo {
    font-family: raleway;
    }
    Thanks & Regards
    Nitesh Raghuwanshi
     
  11. pupwild

    pupwild Member

    Joined:
    Jan 11, 2013
    Messages:
    126
    Likes Received:
    0
    I did this and it did not appear to change anything.
     
  12. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  13. pupwild

    pupwild Member

    Joined:
    Jan 11, 2013
    Messages:
    126
    Likes Received:
    0
    I would like to change the menu titles to RALEWAY, such as home, about us, menu etc.

    I would like to change the title at the bottom of the page also, these titles would be ABOUT US, HOLBROOK, PATCHOGUE, LOCATIONS.

    www.dolcimomentibakery.com
     
  14. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  15. pupwild

    pupwild Member

    Joined:
    Jan 11, 2013
    Messages:
    126
    Likes Received:
    0
    I have already installed Raleway, do you not see it anymore?
     
  16. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    I have checked your website and it seems that still you have not imported the Raleway Google font in the style.css file yet.

    See the image for reference

    [​IMG]




    To add the Raleway Google font in the style.css file follow the steps given below.

    1. Go to the link http://www.google.com/fonts/ and search your font.
    2. Click on the Quick use button.

    [​IMG]


    3. After click, Scroll down at 3rd point of that page and click on the @import tab and then copy the code as shown in the image given below.

    [​IMG]

    and paste it in the style.css file (Theme directory ->style.css ) as shown in the image given below.

    [​IMG]

    This will solve your issue.
     

Share This Page