Local Fame
Forum Replies Created
-
We had the same issue – conflict between contact form 7 4.3. and Datepicker 2.6. The solutions is to update wordpress to 4.8.1, then update contact form 7 to 4.8.1. After that it should work normally.
Forum: Fixing WordPress
In reply to: Added to www prefix broke SEOAs I understand the only problem is that Google doesn’t display search snippet correctly. For several months already Google decides what to show for the website title and description. The problem is not in your website. Try searching for “pk color Interior Design” (without quotes) and your website will appear on the 2nd position with the correct title.
This title, most likely, will appear for any search query containing “Interior Design”. And I would suggest to rewrite all your meta titles, as you did on the main page – make them more descriptive, but under 56 characterd
- This reply was modified 9 years, 7 months ago by Local Fame.
Forum: Fixing WordPress
In reply to: Cannot find the file I need to edit on Filezilla to enable crawlingyour website doesn’t have a problem, it is available for crawling
Forum: Fixing WordPress
In reply to: Cannot find the file I need to edit on Filezilla to enable crawlingYour website is crawled alright. You can check it by searching in Google site:raylahana.co.za
<meta name= “robots” content “noodp”> only means that search engines shouldn’t use description from DMOZ directory to describe your website
Forum: Fixing WordPress
In reply to: Mobile site content wont fitThe only way I can think of is creating a table. But then the font-site of the contents will be quite small.
Another way is maybe putting featured domains first, and then all domainsForum: Fixing WordPress
In reply to: Mobile site content wont fitThe header disappears because you have css class in green.css
For media with max-width: 767px you got#header p.description { display: none; }Removing it would solve the issue with the header
Regarding the column breaking – what would you like to achieve? 2 columns on the mobile version too?
Forum: Fixing WordPress
In reply to: redirect old domain to new domainHello,
Here is a good guide on how to do this
https://www.creare.co.uk/blog/seo-advice/how-to-301-to-a-new-domainbasically, you will need to edit .htaccess on the old domain and add there
RewriteEngine on RewriteCond %{HTTP_HOST} !^www\.newdomain\.co.uk RewriteRule (.*) http://www.newdomain.co.uk/$1 [R=301,L]However, be careful, be sure to back up .htaccess file
Good luckForum: Fixing WordPress
In reply to: Excerpt font sizeHello,
if class .entry-excerpt is within .post you can try the following:.post > p.entry-excerpt { font-size: 14px; }Forum: Fixing WordPress
In reply to: Excerpt font sizeHello,
if class .entry-excerpt is within .post you can try the following:.post > p.entry-excerpt { font-size: 14px; }Forum: Fixing WordPress
In reply to: No referencing by google – robots.txt problemI see that you website is indexed by Google:
https://www.google.com/search?q=site%3Ahttp%3A%2F%2Flateliere.org%2F&pws=0Your robots.txt is ok. If Search Console shows you an error in Robots.txt fetch, this means that the crawler have visited your website, sometime during 1 month period, and couldn’t find this file. The error will persist during this 1 month period
Forum: Fixing WordPress
In reply to: underline on all headersThis css should solve your problem with underlines and color (replace black with the colour you want)
h1 {text-decoration: none !important; color: black !important }If this will not help, please provide more details – the code or the link to an example
Forum: Fixing WordPress
In reply to: change background-color problemIn style.css find #content and change background-color to
background-color: white;Forum: Fixing WordPress
In reply to: Speed Test: High Grade – Low SpeedHello,
I think my servers are U.K based, not sure if that has anything to do with it.
Yes, loading speed also depends on the location of the servers.
By default pingdom checks loading speed from USA. If you server is in UK, change setting in Pingdom to Amsterdam and it suppose to load fasterForum: Fixing WordPress
In reply to: Line height in listsHello,
In order to change line height in lists, you have to use line-height property on the ul selector:
div.entry ul { line-height:14px; }Another variant is to use padding on li selector:
div.entry ul li { padding-top: 14px; padding-bottom: 14px; }Hope it will solve the problem.
Forum: Fixing WordPress
In reply to: how to center front page pictureHello,
1. all your content is located in a tag <main class=”content”
Class .content has width property set to 67%
Set the value to 100% or remove the property.2. Next find the class .entry-content and add
text-align: center;3. You have to move the image outside of <h1></h1>
4. Remove other positioning classes from the image – alignright
then the picture will be centered