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...??? Would really appreciate any help. Thanks
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.
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.
Also for future reference/use of this theme...is it possible to have a different bg image for each feature title section? Thanks again.
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.