A couple changes

Discussion in 'BlackBird WordPress Theme' started by dsapping, Oct 27, 2015.

  1. dsapping

    dsapping New Member

    Joined:
    Aug 20, 2015
    Messages:
    2
    Likes Received:
    0
    I currently have a few requests for my site that should be easy.
    http://marvelousprincessparties.com

    I would like to remove the cell icon (http://marvelousprincessparties.com/wp-content/themes/blackbirdtheme/images/call-us.png)

    I would also like to change the hover color in the footer to white.
    http://marvelousprincessparties.com/wp-content/themes/blackbirdtheme/images/call-us.png

    Also a general question is it possible to have a different header picture depending on the dimensions of the screen? We opted to have a full page logo but it doesn't look right for mobile obviously. Can a different image take it's place for a smaller screens?
     
  2. priya

    priya Guest

    Hello,

    Greetings from InkThemes!

    As per your above issues, solutions are accordingly..

    1) I would like to remove the cell icon

    Please paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .header-info p.cell {
        display: none !important;
    }
    2) I would also like to change the hover color in the footer to white.

    For this, paste code given below in your Custom CSS field of the dashboard.
    Code:
    .textwidget p a:hover {
        color: white !important;
    }
    3) To display logo image properly on mobile view, paste code given below,
    Code:
    @media only screen and (max-width: 480px){
    .logo img {
        width: 100% !important;
    }
    }
    @media only screen and (max-width: 960px) and (min-width: 768px){
    .logo img {
        width: 100% !important;
    }
    }
    @media only screen and (max-width: 767px){
    .logo img {
        width: 100% !important;
    }
    }
    Hope it will resolve your issues..

    Do let me know if you need more assistance,

    Thanks & Regards!
    Priyanka
    InkThemes.com
     
  3. dsapping

    dsapping New Member

    Joined:
    Aug 20, 2015
    Messages:
    2
    Likes Received:
    0
    Awesome, thank you for your help!

    Are the following tweaks possible?

    - For the header can it be centered on all media? For some reason it is displaying off center for our mobile site. Also it is displaying smaller on our shop page, but this may be an error with our shop plugin.
    (http://marvelousprincessparties.com/shop/)

    - For the cell phone icon, I would like the tap to call button to exist on the mobile site but I would like the phone icon (pictured below) to be removed.
    (http://marvelousprincessparties.com/wp-content/themes/blackbirdtheme/images/call-us.png)

    Warm Regards,
    Dillon
     
  4. priya

    priya Guest

    Hello,

    For your above two issues, I have to do some changes/alteration in the source code of the theme..

    So could you please send us your dashboard details at [email protected] and we will do it for you..

    Looking forward to your reply.

    Thanks & Regards!
    Priyanka
    InkThemes.com
     

Share This Page