Removing Default Bullets from Widget Sidebar

Discussion in 'Forum Rules' started by itsdyl, May 21, 2015.

  1. itsdyl

    itsdyl New Member

    Joined:
    May 18, 2015
    Messages:
    5
    Likes Received:
    0
    Hi there,

    Was wondering if anyone could help me remove the default bullet points/icons that appear before the widget heading in the side bar? I'm using the Gammero Pro theme.
    These little ones...[​IMG]???

    Would really appreciate any help. Thanks
     
  2. sameerwalkar

    sameerwalkar Guest

    Hello,

    Could you please provide you site URL
     
  3. itsdyl

    itsdyl New Member

    Joined:
    May 18, 2015
    Messages:
    5
    Likes Received:
    0
  4. itsdyl

    itsdyl New Member

    Joined:
    May 18, 2015
    Messages:
    5
    Likes Received:
    0
  5. sameerwalkar

    sameerwalkar Guest

    Hello,

    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard

    Code:
    .sidebar_wrapper .sidebar .wrap .sidebar_title {
      background: none;
    }
    Hope it will solve your issue.

    Let me know for further doubts.
     
  6. itsdyl

    itsdyl New Member

    Joined:
    May 18, 2015
    Messages:
    5
    Likes Received:
    0
    Thank you so much. That worked perfectly.

    One last thing....

    On the front page i have changed the 'feature bg image' to:

    .feature_content .feature .feature_title {
    background:url(images/GG-feature-header-bg.png) no-repeat;

    However when i check the site on my mobile device, it still shows the default background?

    Can you tell me where else i have to change the image in the code to fix this.

    Thanks again. I will definitely be purchasing my themes from you guys in the future.
     
  7. itsdyl

    itsdyl New Member

    Joined:
    May 18, 2015
    Messages:
    5
    Likes Received:
    0
    Also for future reference/use of this theme...is it possible to have a different bg image for each feature title section?

    Thanks again.
     
  8. sameerwalkar

    sameerwalkar Guest

    Hello,

    It seems that you have missed to apply @media in your code.

    Kindly try the below code it should fix your issue:

    Code:
    @media only screen and (max-width: 480px){
    .feature_content .feature .feature_title {
    background:url(images/GG-feature-header-bg.png) no-repeat;
    }}
    Let me know for further doubts.
     

Share This Page