How to find ID for start page

Discussion in 'SaleJunction E-Commerce WordPress Theme' started by andreas_melin, Oct 6, 2014.

Thread Status:
Not open for further replies.
  1. andreas_melin

    andreas_melin New Member

    Joined:
    Aug 24, 2014
    Messages:
    13
    Likes Received:
    0
    Dear sirs,

    I would like to put all my pages in the footer (spread over all four footer widgets). However, I can not seem to find the "home" page ID so that I can hide it. Right now "home" is written on all four footers on the top.

    I know that you can chose to make like 4 menus instead and put a customized menu in the footer, but in this case, I would prefer to know how to find the "home" page and to see its ID.

    Thank you for your time.

    Kind regards,
     
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,
    Unfortunately there is not any id or class for 'Home' .
    But you can try this to do that.
    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .ddsmoothmenu li:first-child {
    background: pink !important;
    }
    .ddsmoothmenu is just a class if you are using different class in footer use that class with dot.
    Above code is to change color you have to use below code to hide it.
    Code:
    .ddsmoothmenu li:first-child {
    display:none !important;
    }
    

    Thanks & Regards
    Pramod
     
  3. andreas_melin

    andreas_melin New Member

    Joined:
    Aug 24, 2014
    Messages:
    13
    Likes Received:
    0
    Dear Pramod,

    thank you for the quick reply. I will try your suggestion.

    How can I hide the google analytics track code on top of the page?

    I tried various versions of this without success:

    .top_trackinfo {
    display: none;
    }

    any suggestions?

    All the best,

    Andreas
     
  4. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,
    Google analytic code should not be shown on page. There is something wrong .
    Put it correctly. There is an options in theme to put it or you can directly put it in header section .
    Read instructions to use Google code in effective way.
    Thanks & Regards
    Pramod
     
  5. andreas_melin

    andreas_melin New Member

    Joined:
    Aug 24, 2014
    Messages:
    13
    Likes Received:
    0
    Ah, ok. I pasted the entire script and then it worked perfectly. I thought I just needed to put the track ID in there :oops: Thanks again guys!
     
Thread Status:
Not open for further replies.

Share This Page