Robin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Sizing and alignmentglad it worked out for u
I usually use wp-cycle (free slider plugin ) and easy to embed into the theme
your slider must have a shortcode / php code to add ? read the documentation
Forum: Fixing WordPress
In reply to: Importing wordpress siteForum: Fixing WordPress
In reply to: Importing wordpress siteGo to your control panel > phpmyadmin
dump your database (for your previous wordpress installation) use a DB search and replace script to replace your old domain to your new on the DB sql file.and Import that your new installation
Forum: Fixing WordPress
In reply to: Remove page title "home" from top of page.can you pastebin your code what/where/which file are you change, and a link to your site would also be good to help you further
Forum: Fixing WordPress
In reply to: How to put text on top of an image in WordPresshere you go
http://amancingh.com/image.php
<img src="images/logo_aman.png" width="200" height="76" /> <div style="position:relative; left:20px;top: -54px; color:#900202; font-size:20px; font-weight:bold;width:140px; "/>The art is Sold</div>Forum: Themes and Templates
In reply to: Giving width to nav buttons in fixed width menuso you have
home
about
contact
so you would want to move them to
contact
about
homeany how not sure how your menu are structured i just said in ideal conditions using li and first child last child is a better option
Forum: Themes and Templates
In reply to: Sizing and alignment#navigation-wrap { color: #888888; left: 218px; letter-spacing: 1px; position: absolute; text-transform: uppercase; top: 50px; }Forum: Themes and Templates
In reply to: Giving width to nav buttons in fixed width menuand if you even added 10 menu items the 10th item would automatically be considered last child
Forum: Themes and Templates
In reply to: Giving width to nav buttons in fixed width menuah
the first child means if u have menu like
a
b
cno matter where u move there always be a first child and always be a last child no matter where you move
a is first child
and c is last child
yup unless you only have 1 menu itemForum: Themes and Templates
In reply to: Giving width to nav buttons in fixed width menubuttons were moved around ?
Forum: Themes and Templates
In reply to: Sizing and alignmentmenu would more likely be a div
you need display:block if it is not a block element
anyways i was just giving a starting point for the css not actually defining all set of elements to fix itForum: Themes and Templates
In reply to: Sizing and alignmentyou might have to make custom stlying for it, the best option would be to create a child theme for buffalo manage your styling
to make menu center aligned to page
just use in menu class
margin:0 auto;Forum: Themes and Templates
In reply to: Giving width to nav buttons in fixed width menucustom css would still be a better option u could do something like
#menu_id > ul li
and if you know to usefirst-child::
last-child::
elementsForum: Fixing WordPress
In reply to: Changing space/margins around text contentcheers
the best option is to go for child themes if you want to make changes to design/layout
always saves you work from when the theme decides to come out with an update versionForum: Everything else WordPress
In reply to: Screen Resolution and "handheld"create a child theme
go to your style sheetand add
@media screen and (max-width:320px)
{
your style classes
}similarly you can set style for your different screen sizes
and add this to your header if it is not already present<meta name=”viewport” content=”width=device-width, initial-scale=1, maximum-scale=1″>