Problems in viewing my website with FireFox

Discussion in 'ClassiCraft WordPress Theme' started by calvinhon, May 28, 2013.

  1. calvinhon

    calvinhon Member

    Joined:
    Apr 1, 2013
    Messages:
    105
    Likes Received:
    3
    Hi Support,

    I have found another issue, tried loading the pages with an ad blocker on FireFox, some page went completely blank on my end when I turned on ABP ad blocker.

    erm, one more question, how do I turned off the 'select category' search box in the middle?

    Thanks, :)
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    See sometimes the ads get blocked because of activation of plugins in the browser, which might be responsible for blocking. The solution to such problems is to try some other browsers.

    The theme is perfectly coded. There is no such issues in the theme. It would be better if you try other browsers.

    Moreover you can apply this procedure for your second issue.

    Paste the following code in your Custom CSS (Appearance -> Theme Options -> Styling Options -> Custom CSS) to remove the 'select category' search box.
    Code:
    .search_wrapper .search_item.second {
    display: none;
    }
    This will remove the 'select category' search box.

    I hope I answered to your question clearly. Thanks for the understanding and cooperation. Have a great day ahead.
     
  3. calvinhon

    calvinhon Member

    Joined:
    Apr 1, 2013
    Messages:
    105
    Likes Received:
    3
    Hi Piyush,

    yeah, i suppose so, i can always try another browser, it means most of my favourites will have to save into another browser.

    For second issue, thanks! it's fantastic...but..there's one issue, since my 'select category' is being hidden, how do I get to fill up the gap between the 'search bar - what are you looking for?' and the search for zip code, city or add'? Can you give me another code to make the 'search bar - what are you looking for?' responsive too so that it fills up the rest of the middle gap.

    see my attachment in detail.

    Thanks,
     

    Attached Files:

  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    .search_item.first {
    width: 405px;
    }
    .search_item.third {
    width: 438px!important;
    }
    @media only screen and (max-width: 960px) and (min-width: 768px){
    .search_item.first {
    width: 305px;
    }
    .search_item.third {
    width: 338px!important;
    }
    }
    @media only screen and (max-width: 767px) and (min-width: 480px){
    .search_item.first {
    width:364px;
    }
    .search_item.third {
    width: 368px!important;
    }
     
    }
     
    @media only screen and (max-width: 480px){
    .search_item.first {
    width:264px;
    }
    .search_item.third {
    width: 268px!important;
    }
    }
    Adjust its value as per your requirements.
     
  5. calvinhon

    calvinhon Member

    Joined:
    Apr 1, 2013
    Messages:
    105
    Likes Received:
    3
    Hey Thanks Gourav!
    I did it, it looks great!, but I have a small teency weency issue here...inside the search box, 'what are you looking for' can you teach me how to shift that too?
    Thanks,
     

    Attached Files:

  6. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .search_wrapper .search_item.first input[type="text"] {
    margin-left: 30px;
    width: 420px;
    }
    .search_wrapper .search_item.third input[type="text"] {
    width: 310px;
    }
    @media only screen and (max-width: 960px) and (min-width: 768px){
    .search_wrapper .search_item.first input[type="text"] {
    width: 274px;
    }
    .search_wrapper .search_item.third input[type="text"] {
    width: 260px;
    }
    }
    @media only screen and (max-width: 767px) and (min-width: 480px){
    .search_wrapper .search_item.first input[type="text"] {
    width: 330px;
    }
    .search_wrapper .search_item.third input[type="text"] {
    width: 245px;
    }
     
    }
     
    @media only screen and (max-width: 480px){
    .search_wrapper .search_item.first input[type="text"] {
    width: 230px;
    }
    .search_wrapper .search_item.third input[type="text"] {
    width: 190px;
    }
    }
    This will solve your issue.
     
    calvinhon likes this.
  7. calvinhon

    calvinhon Member

    Joined:
    Apr 1, 2013
    Messages:
    105
    Likes Received:
    3
    cool, thanks Piyush, but which one is it for 'what are you looking for'? for me to align it to the left?
    Thanks,
     
  8. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    The code given below is responsible to align the text "what are you looking for" in the left.
    Code:
    .search_wrapper .search_item.first input[type="text"] {
    margin-left: 30px;
    width: 420px;
    }
     

Share This Page