cmsjason
Forum Replies Created
-
This site is probably custom code but you can inspect his code and see if you can find a reference.
Forum: Fixing WordPress
In reply to: How many things do I need to startThere are plenty of tutorials on youtube and google. Most everything can be accomplished with plugins if you are not code proficient. Once the site is built it is very user friendly. WordPress.org allows you complete control over customization so that is the rout I always take. There are free and starter themes also. Hope this helps
Forum: Fixing WordPress
In reply to: Increase the size of your Serch Box in the Top Bar#topbar-search input[type=text] {
background: #f7a0d0;
height: 40px;
}
For both your questions they can be adjusted with the CSSForum: Fixing WordPress
In reply to: Navigation bar fitting in one line#nav-second ul.sf-menu>li {
width: 11%;
}Ok you have two problems. # 1 you will need to delete on your server this file Robots.txt file. And # 2 all of your sub pages are not being crawled because of
<title>What We Treat – Sojourn Acupuncture</title>
<meta name=’robots’ content=’noindex,follow’ />Anywhere you have noindex, follow needs to be changed to index, follow.
Hope this helps.
Also maybe you could check out your options and ensure that you did not select no follow when setting up the account.inside the ul.mobile-menu
On your ol,ul { display:none}
here is where you would add display:none and then you would add ol, ul:hover {display: block}
I haven’t worked with this plugin but if you can find out where the code is that is how I would fix it.
Sorry I couldn’t be more helpCould you send a link to the site so I could inspect the element and try to give you a better more specific answer.
Here is a simple example of how to control drop downs with css using hidden and hover.
http://www.w3schools.com/css/tryit.asp?filename=trycss_dropdown_button