• Resolved NeviZero

    (@nevizero)


    I have a few questions and issues regarding the Enigma theme…

    My Site: https://www.gatewayreporting.com

    1: I am getting the folloing error when trying to add any code to the Custom CSS section:

    Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘weblizar_sanitize_text’ not found or invalid function name in /home/content/p3pnexwpnas10_data02/37/2719037/html/wp-includes/plugin.php on line 213

    2: In the Service Option section, the hyperlink has defaulted to gatewayreporting.com/# for all three links – how do I customie those to a specific link.

    3: Is it possible to use the Portfolio section on a different page? As in, I want to use the Portfolio section, but I want to use it on the What We Do page, not on the Home page.

    4: I am not able to center images on my pages. Not the featured images, but images I have added with my content – see the Why Chose GATEWAY or What We Do pages for an example.

    Thank you for your assistance.

Viewing 15 replies - 1 through 15 (of 19 total)
  • Thread Starter NeviZero

    (@nevizero)

    My Site: https://www.gatewayreporting.com

    I’ve answered a few of these questions through experimentation and another from my previous post. Please disregard the above. I do still have a few questions, however:

    1: Is it possible to use the Portfolio section on a different page? As in, I want to use the Portfolio section, but I want to use it on the What We Do page, not on the Home page.

    2: I am not able to center images on my pages. Not the featured images, but images I have added with my content – see the Why Chose GATEWAY or What We Do pages for an example.

    3: I have changed the color of the header background. I currently have my email address and phone number to the right – how do I change the color of this text (as well as their corresponding icons – the envelop icon with the email address, for example)?

    4: In the header on the right is the email address and phone number. They are currently beside each other – is it possible to put the phone number under the email address?

    Thank you for your assistance.

    Hi,

    Sol 1:

    add below line of code snippet where you want to show your portfolio content.

    get_template_part(‘home’,’portfolio’);

    And save the changes.

    Sol 2:

    Write below CSS rules into custom CSS editor

    .enigma_blog_post_content p {
    text-align: center;
    }

    Save the changes.

    Sol 3:

    Write below CSS rules into custom CSS editor:

    .header_section {
    background-color: #AD2B2B !important;
    }

    Save the changes.

    For the last solution provide any screen-shot or clarify in detail

    Thanks

    Thread Starter NeviZero

    (@nevizero)

    Solution 1:
    How do I insert that snippet into my HTML content? When I try, it just shows the code on the page, not the Portfolio – see screenshot below

    Screenshot One

    Solution 2:
    This did the trick – thank you very much!! ??

    Solution 3 and 4:
    The solution you provided changes the background color of the header. This part I have already done – I changed it to white. The issue I am having is that the text and icons on the right side of the header (with the phone number and email address) are also white, and therefore are no longer visible. See the screenshot below:

    Screenshot Two

    I am trying to do two things here:
    – Change the color of the text and icon
    – Change the phone number/email address from one line to two lines

    Hi,

    insert it into pap tag

    <?php get_template_part(‘home’,’portfolio’); ?>

    use below CSS code into custom CSS code

    .head-contact-info li a {
    color: #3BBCEA !important;
    }

    .head-contact-info i {
    color: #3BBCEA !important;
    }

    Save the changes.

    Thanks

    Thread Starter NeviZero

    (@nevizero)

    Thank you again for all your assistance – I can’t thank you enough. I am good to go on everything except Solution One – inserting <?php get_template_part(‘home’,’portfolio’); ?> into my content did not work – nothing was displayed.

    One small change to this – I have been saying Portfolio this whole time (because I am an idiot.. LOL) – I actually meant the Blog section. It is the Blog section that I am trying to add to my What We Do page.

    Hi,

    For blog section you can insert below line of code:

    <?php get_template_part(‘home’,’blog’); ?>

    Save the changes.

    Thanks

    Thread Starter NeviZero

    (@nevizero)

    I’m sorry to be a pain, but it is still not working…. ??

    The exact page in question is https://gatewayreporting.com/whatwedo/. I have pasted the entire of the page content I have created below. The bit of code you provided is towards the bottom, just above the H2 section at the very bottom:

    <p align="justify">
    At GATEWAY Reporting & Data Solutions our goal is to build long, meaningful, and productive partnerships with all of our clients. Our number one priority is you! We accomplish this by placing a large emphasis in being flexible in our relationship with our partners. By placing a focus on customer service, performance excellence, and service execution we ensure that all of our partners see maximum value in their relationship with GATEWAY!
    
    <h3 style="text-align: center;">
    LET YOUR ANALYSTS FOCUS ON ANALYSIS - WE WILL HANDLE THE REPORTS!!
    </h3>
    
    <p align="justify">
    We will work closely with you to identify your exact needs and requirements then develop a schedule and plan specific to your environment. There are no cookie cutter solutions here! Every organization is different, with wide ranging goals and requirements. The solution GATEWAY offers will be specifically tailored to your environment. We will work together to execute and provide long lasting efficiency and excellence!
    
    <p align="center">
    <img class=" wp-image-10 size-full aligncenter" src="https://gatewayreporting.com/wp-content/uploads/2015/07/Chart2JPG.jpg" alt="GATEWAY Reporting & Data Solutions" width="800" height="479" align="middle" />
    
    <?php get_template_part('home','blog'); ?>
    
    <h2 style="text-align: center;">
    Click <A HREF https://gatewayreporting.com/?p=4>here</A> to get started on your custom solution today!
    </h2>

    Hi,

    Try this

    <?php get_template_part(‘home’,’services’); ?>

    Thanks

    Thread Starter NeviZero

    (@nevizero)

    Nope – that didn’t do anything either… ??

    Hi,

    I find the solution so please try this:

    <?php get_template_part(‘home’,’blog’); ?>

    Now save the changes.

    Now write below CSS rules into custom CSS editor:

    .scrollimation.scale-in {
    opacity: 1 !important;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    }

    And save the changes.

    Thanks

    Thread Starter NeviZero

    (@nevizero)

    I’m really sorry… I don’t know if it is me doing something wrong, but that still didn’t work… ??

    Hi,

    Use instead of above

    .scrollimation.scale-in {
    opacity: 1 !important;
    -webkit-transform: scale(1) !important;
    -moz-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    transform: scale(1) !important;
    }

    Save the changes.

    Thanks

    Thread Starter NeviZero

    (@nevizero)

    Sorry guys, but it is still not working… ??

    Thread Starter NeviZero

    (@nevizero)

    I’ve been worried that maybe some of the other customizations I have made might be causing a conflict or something, creating the issue here. Based on the feedback you gave on another of my questions/threads, I tried the following:

    • Deactivated all of the plugins
    • Deleted everything from the Custom CSS section and saved
    • Changed the theme Enigma-Child back to Enigma
    • Deleted the Enigma-Child theme
    • My logic wit this approach is that, at this point, I should be right back to square one with absolutely no other customization – there is zero chance I’ve created a conflict somewhere
    • Back into the Theme Options
    • Added the above code to the Custom CSS box and clicked save

    Unfortunately, it still had no impact. It made no change on the page.

    I hope that helps.

    Thread Starter NeviZero

    (@nevizero)

    Any update on this?

Viewing 15 replies - 1 through 15 (of 19 total)
  • The topic ‘A Few Questions’ is closed to new replies.