Okay
  Public Ticket #899160
Visual Composer
Closed

Comments

  •  2
    creativepear115 started the conversation

    I tried to install the required VC but the install is failing.  I get this msg: Destination folder already exists. /data/50/4/5/130/4657456/user/5518176/htdocs/DeanHall/wp-content/plugins/js_composer/

    Any suggestions?

  •  291
    Paul replied

    Hello!

    That is strange. Please try the following:

    1. In your WP admin, go to the Plugins menu and see if there is already Visual Composer installed. If so, try to remove it first and try installing it again.
    2. If the above method does not help, use an FTP client software (like FileZilla) to connect to your server then go to the plugin folder of your WP site. The path should look like this: "[root]/wp-content/plugins/". See if there is the "/js_composer" folder in here (it is VC's folder). If so, remove it and go back to your WP admin and try installing it again.

    Let me know if this helps!

    Regards,
    Paul

  •  2
    creativepear115 replied

    Yes - that did it!  thank you. 

    Is there a way to increase the font size of the menu items?  And edit the copyright section?  Thank you again!

  •  291
    Paul replied

    For increasing the menu's font size, you would have to use custom CSS to adjust that. Please go to "Style Customizer > Others" and enter the below code into the Custom CSS box:

    #menu-wrapper > ul > li {
        font-size: 16px;
    }
    

    If you would also like to use custom CSS for other elements, I would recommend Developer Tools on Chrome or Firebug on Firefox to inspect the elements on the page. Then you will know which CSS selector to adjust.

    And to edit the copyright text, go to "Theme Options >General" and you will find the option there.

  •  2
    creativepear115 replied

    Thank you very much for your assistance, I was able to fix and appreciate your quick response.  One last (I hope) question - I can't change the copyright, FB icon, and small things like the Button text from white to a darker color?   It seems to be preset as white, but the layout I'm creating has a lighter/open feel, and I need a few lines of copy to be darker in color.  I don't have any copy in the style customizer set to white.  

  •  291
    Paul replied

    Regarding your questions:

    1. To change the copyright text, please go to "Theme Options > General".

    2. To change the FB icon, you can go to "Theme Options > Social Networks" and use the custom set for the social icons.

    3. You would have to use the custom CSS like this to adjust the button's text and border colors:

    #theme-body .button, #root-container .wpb_button_a .wpb_button, #root-container .vc_btn3[class*="theme-default"] {
        color: #000;
        border-color: #000;
    }