admin管理员组

文章数量:1291041

1) Why WordPress only use based on "text" menus (navigation) only?
Maybe the answer is "it is for SEO and mobile responsive WordPress".
Am I correct? any other opinions?

2) What if I create "image navigation menu" for only PC version and create "mobile navigation and responsive" maybe select box.
Is it possible?

I have found is_mobil() and I think it can be done.

Please see this link http:www.tourtips/ and see the beautiful image navigation menu. I really want to use it but I worry about mobile version.
Is there any way to keep this image menu for PC version and create another mobile or small size menu for smaller devices? if it's possible, what codes I should use?

I think some of codes should be loaded depends on devices such as: if...is_mobile()... and CSS parts... and loading scripts...

Any more things I should worry? any tips? any tutorial links?

1) Why WordPress only use based on "text" menus (navigation) only?
Maybe the answer is "it is for SEO and mobile responsive WordPress".
Am I correct? any other opinions?

2) What if I create "image navigation menu" for only PC version and create "mobile navigation and responsive" maybe select box.
Is it possible?

I have found is_mobil() and I think it can be done.

Please see this link http:www.tourtips/ and see the beautiful image navigation menu. I really want to use it but I worry about mobile version.
Is there any way to keep this image menu for PC version and create another mobile or small size menu for smaller devices? if it's possible, what codes I should use?

I think some of codes should be loaded depends on devices such as: if...is_mobile()... and CSS parts... and loading scripts...

Any more things I should worry? any tips? any tutorial links?

Share Improve this question edited Jul 5, 2013 at 12:24 Zistoloen 1131 silver badge8 bronze badges asked Jul 5, 2013 at 11:10 pullapulla 7234 gold badges17 silver badges34 bronze badges 1
  • You are asking what to do, while this site is more about how to do it. Please try to formulate your requirements first and focus question on what you need help with to achieve them. – Rarst Commented Jul 5, 2013 at 12:12
Add a comment  | 

1 Answer 1

Reset to default 0

I'm not sure what you are asking for, but I think you need some general suggestions. So:

1) Websites are made by three layers. Wordpress (like others good CMS) creates "only" TEXT menu because this is the (fundamental) semantic layer.

1-b) Then, you can always add a presentation layer (css) or a behaviour layer (javascript) in order to create an Image menu, also if Wordpress gives you just the semantic layer. You can reach this with some techniques, one of these is the image replacement technique.

2) If you have understood the two points above, you can also understand that is not so useful to generate on the server side two different html. All that you need is to create a good semantic HTML (Wordpress does it!) and after, via css and javascript, you can add all your images and behaviours.

本文标签: navigationImage menu on responsive WordPress