• Hi!

    Is there any way to change the position for title, text and button for Advance CTA? Is it possible to remove the two thin colour lines next to the title. Thanks

Viewing 15 replies - 1 through 15 (of 15 total)
  • Hi @cecilechui,

    Where and how do you want to change position of title, text and buttons of Advanced CTA? Please provide clear requirement.

    To remove thin color lines before title of widget you can use following css:

    
    #home-page-widget-area .widget-title{
        border-left: none;
        padding-left: 0px;
    }
    
    Thread Starter cecilechui

    (@cecilechui)

    Thanks a lot ??

    Thread Starter cecilechui

    (@cecilechui)

    Hi!

    I have another question. The background photo shown on Advanced CTA has a dark shade of overlay covering the whole photo. How could the dark shade be removed?

    Thanks

    Hi @cecilechui,

    Use following css to remove dark overlay of Advanced CTA:

    #page #home-page-widget-area .with_bg.business_era_widget_advance_call_to_action:before {
        background: none;
    }

    Thanks

    Thread Starter cecilechui

    (@cecilechui)

    Thank you, sorry I have another question. I tried to adjust the font size and colour for the title and text in .widget-title {colour: and font-size, but it didn’t work. Could you show me how? Thanks

    Hi @cecilechui,

    Please use following code to change widget title font and color:

    #page #home-page-widget-area .widget-title{
        font-size: 30px;
        color: #222222;
    }

    You can replace font-size and color value in aforementioned code to what you want to change.

    Thread Starter cecilechui

    (@cecilechui)

    Thanks a million ??

    What about the text under the title? I tried .widger-text, but it didn’t work.

    Thread Starter cecilechui

    (@cecilechui)

    Thanks a million ??

    What about the text under the title? I tried .widget-text, but it didn’t work.

    Hi @cecilechui,

    Your code did not work because of hierarchy.

    You can add following line of selector before your code:

    #page #home-page-widget-area

    Your code .widget-text need to be:

    #page #home-page-widget-area .widget-text

    Thread Starter cecilechui

    (@cecilechui)

    Thank you, I put in the following but the text under the title didn’t change at all.

    #page #home-page-widget-area .widget-text{
    font-size: 15px;
    color: #008080;
    }

    Is there anything I put in wrongly? Thanks

    Hi @cecilechui,

    It is difficult to solve issue without checking your site. Please provide me url of your site.

    Thread Starter cecilechui

    (@cecilechui)

    Here’s the url:

    https://jidacapital.com/wordpress/

    thanks

    Hi @cecilechui,

    Your site has too many menu item. So space allowed for menu is not enough for such large number of items. You can group related menu items and display them in dropdown to adjust nav aligned with logo.

    Thanks.

    Thread Starter cecilechui

    (@cecilechui)

    Thanks, I’ve removed one of the main buttons. Is it possible to reduce the font size of the buttons so that the menu could be aligned with the logo?

    Besides, is there a way to change the text size and colour in the Advanced CTA?

    Actually my website will be in two languages. Just wonder if your template supports multi-language? Thanks a lot.

    Hi @cecilechui,

    Yes, you can reduce font size through custom css like you did for other section in past. You can change text size, color and font of any section through custom css. Check style.css and copy css of particular section you need from it. Paste it to your child theme or custom css of customizer and modify and save it.

    You will probably use WPML or any other plugin for multi-language. Yes, theme is compatible with such plugin and itself translate ready.

    Thanks

Viewing 15 replies - 1 through 15 (of 15 total)
  • The topic ‘Advance CTA’ is closed to new replies.