gradiant image not showing on menubar

Discussion in 'BizWay WordPress Theme' started by monbro, Feb 28, 2013.

  1. monbro

    monbro New Member

    Joined:
    Feb 22, 2013
    Messages:
    7
    Likes Received:
    0
    Hi,

    I have installed the bizway theme but am not getting the gradiated image on my menu bar. ie it is flat blue.

    When i installed the free version which was blue by default the gradient image is loaded. (menubg-blue)

    The image is a crude mockup of the two menubars - trying to get the 'paid for' version to work.
     

    Attached Files:

  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Do let us know your website link.
     
  3. monbro

    monbro New Member

    Joined:
    Feb 22, 2013
    Messages:
    7
    Likes Received:
    0
    demo site (using free theme) http://bespoke.octagonpresents.co.uk

    getting ready to go live using paid for theme: http://live.octagonpresents.co.uk (menu bar issue)

    I need to have a custom header section for iPhones because I need to lose the text on the right of the desktop version as it does not look good on the iphone version and the number goes to black instead of white.

    I need to know where to look to perhaps add some logic when the iphone version loads to hide or change elements in the header
     
  4. monbro

    monbro New Member

    Joined:
    Feb 22, 2013
    Messages:
    7
    Likes Received:
    0
  5. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
  6. monbro

    monbro New Member

    Joined:
    Feb 22, 2013
    Messages:
    7
    Likes Received:
    0
    That doesn't really help me in the short-term. Can you then help me with my other issue. I need to load a different header section for the iphone/mobile version - can you point me to where I can look to modify the code to allow for this?
     
  7. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Download theme again from your members area, This will solve your issue.
     
  8. monbro

    monbro New Member

    Joined:
    Feb 22, 2013
    Messages:
    7
    Likes Received:
    0
    Thanks that has done the trick. Now do you want me to make a new thread about the header. I would be useful for a lot of people to be able to be able to amend the header section to allow for iphone issues. I need to swap header background image and remove right hand text when iphone/mobile is detected. thanks. the first problem was your issue not mine so can you give me this one :)
     
  9. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    1.For your first issue

    Code:
    @media only screen and (max-width: 480px) {
    .header-container{
    background-image:url(Your image address)!important;
    }
    }
    @media only screen and ( max-width: 768px ) {
    .header-container{
    background-image:url(Your image address)!important;
    }
    }
    @media only screen and (min-width: 768px) and (max-width: 959px) {
    .header-container{
    background-image:url(Your image address)!important;
    }
    }
    @media only screen and (min-width: 480px) and (max-width: 767px) {
    .header-container{
    background-image:url(Your image address)!important;
    }
    }
    2.
    Please explain your problem with the help of screenshot, where you want to remove the text, so that we can give you the exact solution.
     

Share This Page