I wanted to remove the posted date, category and author on the blog posts, I added the following code in the custom css: .content_wrapper .side_content .post .post_info { display: none; } But it still appears, any help?
Hi, thanks for your reply. my website link is www.tradingsoftwares.co.uk. The reason I wanted to get rid of it was because the author of the posts comes up as admin - is there a way to change the author? Also when you click one of those you get the side bar, is there a way to remove the meta and recent comments field form the sidebar? If there is a way to do these things then I would keep those information, thanks.
Hello, I think you want to remove post meta section, for this paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .content-bar .post .post_meta { display: none; } This will solve your issue. If not then please specify your issue with the help of screenshot image that which section you want to remove.
Hi Thanks for that, that code removes the posted date, category and author on the blog posts. Is there a way to remove the meta category from the sidebar which has site admin, log out, rss, comments rss, wordpress org , I have attached a screenshot?
Also I have created a custom sidebar on products page but it appears on the right, is there a way to move the sidebar to the left? I have attached a screenshot. Thanks, Ronnie
Sorry one more question, any hyperlinks I add don't look like links they look like normal text. The user will not know if its a link, is there a way so that the hyperlinks are another colour and underlined? Thanks, Ronnie
Hello Ronnie, It's a widget area. You can remove "meta category" from Appearance > Widgets > and remove "meta" from there. It require customization in "page.php" file. And changes will be visible on all pages. It is not possible to achieve it for any particular page. For this Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .content-bar a, .fullwidth a { color: YOUR COLOR VALUE;} Thanks & Regards Nitesh Raghuwanshi
Thank-you for that. The only thing is it doesn't work for links on the home page? Also do you have the code for when you hover over the link? Thanks, Ronnie
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .feature_contentbox a.readmore { color: purple; } .feature_contentbox a.readmore:hover { color: red; } .footer-wrapper .footer a{ color: purple; } .footer-wrapper .footer a:hover{ color: red; } In place of "purple" and "red" you can put your color or color code. This will solve your issue.
Thanks for that! Just one more question, I am having trouble putting adsense adverts, some pages it works but other pages it doesn't work? I try putting them on the blog pages by simply pasting the adsense advert code in the post but it doesn't work. I try put the Adsense advert on the side of the contact us page by pasting it in the widgets area in the custom sidebar, it doesn't work. Is there a reason why its not working? Do I need a special plugin for it to work? Thanks, Ronnie
Hello, Go to the Appearance > Widgets panel in your dashboard and drag & drop the text widget in the primary or secondary widget area and then paste your adsense advert code in the content area of text widget. This will work fine.
Thanks for that but this still does not work on my contact page there is still a blank space on the right? Please see screenshot attached. Also would like to add adverts to the actual blog post underneath, this does not work either? Please see screenshot.
Hello, I think you have done some custom code in the theme files due to which the sidebar is not displaying there. So please download the fresh copy of the Theme from the members area (http://inkthemes.com/members/member) and, upload and activate it in your dashboard. Follow the link given below for reference. http://www.inkthemes.com/how-to-update-a-premium-theme-by-inkthemes/05/ I hope this will solve your issue.
Hi a few questions: 1)I know you can change the background image but is there a way to change just the colour of the current background in the local business pro theme? 2)Is there a way to reduce space in the header underneath my logo there is a big space? my link is: www.tradingsoftwares.co.uk? Thanks, Ronnie
Hello, 1. It is not possible to change the color of background image because it is an image not a color, If you want to change its color then, Go to images directory present in your theme directory and replace your image with present background image (i.e bg.png) or edit it. The name of image is "bg.png" Note:- Use same name for your edited image and remove the current image. Follow the link for reference. http://www.inkthemes.com/how-to-edit-internal-files-through-ftp/07/ 2. Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .header .logo { margin-bottom: 0px; } .call-us p { margin-top: 0px; margin-bottom: 0px!important; padding-bottom: 0px; } This will solve your issue.