regarding the theme

Latest Reply from Dave at 2015-02-12 04:46:32
i have a few questions


How can i make the theme fullwith

there are text saying "go to" is it possible to edit that
and is it possible to edit the two menus on mobile version so they are separated and not on top of each other

i have a problem on the tablet view can that be edited it looks wierd with all the pages navigation listed above

i saw a topic where u can make it seen as desktop view on tablet does that work last time i tried it i fucket it up totally n iam afraid to do it again because the screen whent total white
HI!
1) To fix this you have to edit the following code:
echo '<option value=\'#\'>Go to ...</option>';

in the file functions.php.

2)To enable the desktop version of the theme on tablets you have to follow the steps:

2.1 Replace the code:
<link rel="stylesheet" href="<?php echo get_template_directory_uri()?>/css/wide.css" type="text/css" media="screen and (min-width:1024px)" />

with:
<link rel="stylesheet" href="<?php echo get_template_directory_uri()?>/css/wide.css" type="text/css" media="screen and (min-width:639px)" />

and remove the line:
<link rel="stylesheet" href="<?php echo get_template_directory_uri()?>/css/tablet.css" type="text/css" media="screen and (min-width:640px) and (max-width:1023px)" />
in the librery.php file.

2.2 Open style.css located in the directory of the theme and remove the code starting with the line:
/*	-==========================- TABLET -==========================-  */
@media only screen and (min-width:640px) and (max-width:1023px) {

up to the line:
/*	-==========================- MOBILE -==========================-  */

Besides, replace the line:
@media only screen and (min-width:1024px) {
with:
@media only screen and (min-width:639px) {

That's all you need to do.
U forgot to tell me how to make the themefullwidth
Hi!
The theme comes with the responsive web design which adapts the layout of your website to different screen sizes. There are only desktop, mobile and tablet modes. The instruction help you force the desktop mode on tablet devices.

Leave a reply

Add codeAdd image