Remove Slider Comments and Remove Contact Map

Discussion in 'RoadFighter WordPress Theme' started by vibrandsee, Oct 22, 2015.

  1. vibrandsee

    vibrandsee Member

    Joined:
    Apr 13, 2013
    Messages:
    102
    Likes Received:
    1
    Hi,

    1) I'm trying to remove the headings in the slider with the following css:

    .slider_text_container{
    display: none;
    }

    This does not seem to work.

    2) I am trying to remove the map on the contact page with the following css:

    .add_n_map {
    display: none;
    }

    This also does not work.

    Please help!
     
  2. vibrandsee

    vibrandsee Member

    Joined:
    Apr 13, 2013
    Messages:
    102
    Likes Received:
    1
    Hello, just following up to see if someone can assist with this.
     
  3. priya

    priya Guest

    Hello,

    Greetings from InkThemes!

    As per your above issues, solutions are accordingly.

    1) I'm trying to remove the headings in the slider with the following css:

    If you want to remove only heading section, you just have to paste the CSS code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .flex-caption h1 {
        display: none !important;
    }
    To remove that section completely including description part, paste this code (given below),
    Code:
    .flex-caption {
        display: none !important;
    }
    2) I am trying to remove the map on the contact page with the following css:

    Please paste the code given below in Custom CSS section of your dashboard,
    Code:
    .contact-map {
        display: none !important;
    }
    Hope it will resolve your issues..

    Do let me know if you need more assistance,

    Thanks & Regards!
    Priyanka
    InkThemes.com
     
  4. vibrandsee

    vibrandsee Member

    Joined:
    Apr 13, 2013
    Messages:
    102
    Likes Received:
    1
    Thank you. That did the trick.

    My contact page still displays the heading 'Location Map'. How would I remove that heading?
     
  5. priya

    priya Guest

    Hello,

    Please follow the screenshot given below.
    RoadFighter_remove_title.png

    For your information, I am using wp-editor plugin to edit the file.

    You can also download and use it from the link https://wordpress.org/plugins/wp-editor/.

    Hope it will resolve your issue

    Do let me know if you need more assistance,

    Thanks & Regards!
    Priyanka
    InkThemes.com
     

Share This Page