• Resolved ipsmarketing

    (@ipsmarketing)


    Hello, I need some help to change a few things on enigma theme, my site is ipsmexico.com.mx, there goes my doubts:

    1 – Take off the two circles at the Slider part that shows how many sliders the page actualy have.
    2 – Change the “Footer Widget Area” color from #34495e to an URL image or to #848484 color.
    3 – Change the icons on “Our Service” session to other icons or other images.
    4Increase the quantity of services in “Our Service” session, from three to six.
    5 – In this website “https://mblawltd.com/” they put various links in the description of “Our Services” session, how can I do the same?
    6 – Remove the rotation effect of the photos in the “Portfolio” session, as well as remove the buttons on top the photos, keeping only the hover.
    7 – Decrease the height padding on the Menu area and increase lenght padding at the same place.

Viewing 11 replies - 1 through 11 (of 11 total)
  • I get a message “Hacked by Rayyan” on your site. You may need to clean it up.

    Thread Starter ipsmarketing

    (@ipsmarketing)

    wow, how did I get to clean it up? damn…

    Thread Starter ipsmarketing

    (@ipsmarketing)

    Its like.. put a new theme then strat it all again?

    Read this:
    https://codex.www.ads-software.com/FAQ_My_site_was_hacked
    It can be a very long and involved process, depending upon what damage was done. You should FTP into your site or use your host’s Control Panel to look around and assess what’s still there. Are there any funny looking files? Are the WordPress files still there? Make sure you change your FTP password in case someone was able to guess it. You may have to reinstall WordPress. If you get WordPress running, you want to install a plugin called WordFence. It will scan and monitor your site, and alert you when a theme or plugin needs to be updated (you should always keep your themes and plugins up to date, and not use anything that’s not from the WordPress theme and plugin repository).

    Hello,

    ipsmarketing

    open style.css from child theme

    To Take off the two circle put below code in file

    .carousel-indicators
    {
    display: none !important;
    }

    To Change the “Footer Widget Area” color put below code in file

    enigma_footer_widget_area {
        background: #848484 !important;
    }

    To change service icon

    click on Customize option on menu Appearance->Customize->Theme Options->Service Options and change in

    FontAwesome Icons.

    in “Service One Link option” you can put link

    To Increase the quantity of services

    in your main theme’s folder you will see home-services.php file copy this file as it is in child theme’s folder.
    Now you need edit this file that is in child theme’s folder.

    Now in that file in line no:17 you will see below block of code:

    for($i=1; $i<4; $i++ )

    Now in the line no:17 you can set
    $i<5; ,
    you can give any number you want.

    To Remove the rotation effect of the photos in the “Portfolio” session, as well as remove the buttons on top the photos

    open style.css from child theme put below code in file

    .enigma_home_portfolio_showcase:hover img{
    -webkit-transform:scale(1)rotate(0deg) !important;
    -moz-transform:scale(1)rotate(0deg) !important;
    -ms-transform:scale(1)rotate(0deg) !important;
    -o-transform:scale(1)rotate(0deg) !important;
    transform:scale(1)rotate(0deg) !important;
    }
    
    .enigma_home_portfolio_showcase:hover .enigma_home_portfolio_showcase_overlay_inner {
        visibility: hidden !important ;
    }

    To Change the “Footer Widget Area” color put below new code in file

    .enigma_footer_widget_area
     {
        background: #848484 !important;
    }

    Let us know which Menu area you want Decrease the height padding

    Thread Starter ipsmarketing

    (@ipsmarketing)

    Thank you CrouchingBruin and Support! I was able to remove the hack, now I have to do it all again. haha Thanks anyway!

    Thread Starter ipsmarketing

    (@ipsmarketing)

    Um, everything went right but the Our Services session.

    See, this site have so many links listed in their site:
    https://mblawltd.com/

    Like their Personal Services have all these links:
    ? CRIMINAL DEFENCE
    ? DIVORCE & FAMILY
    ? DRIVING OFFENCES
    ? IMMIGRATION
    ? PERSONAL INJURY
    ? WILLS, TRUSTS & PROBATE
    ? NRI LEGAL MATTERS
    ? HOME AND PROPERTY
    ? WORK & EMPLOYMENT
    ? JUDICIAL REVIEW

    I couldn’t put even one in that link part on the customization window. Also I couldn’t change the image nor put more itens, I’ve changed the number on line 17, but doesn’t work for more itens, only for less (takes off but doesn’t add more). What should I do? =(

    To use link Put html link in the description of “Our Services” section.

    Increase the quantity of services

    use code like $i<=5;

Viewing 11 replies - 1 through 11 (of 11 total)
  • The topic ‘CSS codes for enigma/inferno theme, HELP’ is closed to new replies.