Sensei
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Best theme to use for non-coderCandy, if you have a lot of pages (700 pages would take DAYS to manually copy / paste).
If you cannot export the site perhaps you could look into engaging the help of a professional who could extract the data from your site via a technique called web scraping. I would think it would be no more than a few hours for someone who knows what they are doing to extract all the data and import it into a WP database.
Let me know if there is anything else I can do to help.
Forum: Themes and Templates
In reply to: Best theme to use for non-coderCandy,
I would have a look at https://wordpress.org/themes/twentyeleven or https://wordpress.org/themes/twentytwelve, they are very solid and very well supported themes (they come with a default installation of WordPress)
If you need to create more complex layouts within the pages, perhaps something like this: http://codecanyon.net/item/visual-composer-page-builder-for-wordpress/242431 it has a small price, but is a very powerful tool for creating almost any layout you can imagine within a page without even knowing how to apply shortcodes!
Let me know if you have any more questions.
Forum: Themes and Templates
In reply to: Use php to align search box in nav?FYI – Im now getting a landing page on your site. is that expected?
Forum: Themes and Templates
In reply to: Use php to align search box in nav?Nick,
If it works fine then thats fine.
If it works its fine,
position:absolutemakes a much more drastic change to the elements behaviour than float, and I’m not sure a long technical explanation will do you much good.Let me know if you need any more help 😉
Forum: Themes and Templates
In reply to: Use php to align search box in nav?Hi Nick
2 things to overcome this issue, the only problem with this approach is if you have too many menu items in the future the ones to the right may appear under the Search bar.
1) add an ID to the LI the search form is in
$items .= '<li id="search_form_item">' . $searchform . '</li>';2) some CSS like this:
#search_form_item{ position:absolute; top:10px; right:7px; }Let me know if that doesn’t have the desired effect.
Cheers
Ben