TouchCoding.net - ?yvind S?ther
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change background color of the mobile menuSorry to hear that!
Try this one, might work better:@media screen and (max-width: 1000px) { #headerwrap #menu-icon { color: #fff; } }
Get back to me if that doesn’t help ??
?yvind
[Signature moderated]Forum: Fixing WordPress
In reply to: sticky navbarHi Karwan!
I’m sorry, but I don’t understand what you are really after here. By “sticky” I though you meant fixed to the top. Can you please explain what you’re after.thanks
?yvind
[Signature moderated]Forum: Fixing WordPress
In reply to: Change background color of the mobile menuHi Federico!
There is a easy solution to your problem with just some simple css! I would suggest that you change the color of the menu icon to white, which makes it visible when the background is black.Add this css to you child theme’s stylesheet or to a custom css plugin:
#menu-icon { color: #fff; }
Here is a image of the result ??
https://postimg.org/image/rh2rfg5hf/Hope that was what you were after
Cheers
?yvind
[Signature moderated]Forum: Fixing WordPress
In reply to: How to fix menu dropdown pages?Hi avrc.be!
I found out what the problem was!
The solution is simple. The thing you need to do is to add this code to your css:#access ul li ul { top: 50px; }
You had 100px and that makes the submenu too far down. That way, when you try do click on it, you move the cursor out of the menu because of the gap between the menu and submenu. Moving the submenu closer to the menu would do the trick ??
Remember to add the css either in a custom css plugin or in a child theme ??
Cheers
?yvind
[Signature moderated]Forum: Fixing WordPress
In reply to: Problems after installing wordpress 4.3–nb_NODet betyr at hvis dere bruker en caching plugin for siden deres, m? dere g? under innstillinger og trykke clear cache.
Hvis dere fortsatt har problemer med siden etter ? ha lasta ned filene i guiden, ville jeg ha deaktivert (ikke slette) alle utvidelsene dere har. Det kan v?re disse som er problemet.
Hvis dere ikke er sikre p? om dere har t?mt logg og nettstedsdata, kan dere f?lge denne guiden: https://www.refreshyourcache.com/en/home/
Velg nettleseren dere bruker og f?lg guiden ??Forum: Fixing WordPress
In reply to: Problems after installing wordpress 4.3–nb_NOHi there!
I found this page, which helped for me atleast:
https://theme-fusion.com/knowledgebase/avada-3-8-6-wordpress-4-3-update-issues/That should solve your problem ??
Cheers
?yvind
[Signature moderated]Forum: Fixing WordPress
In reply to: change font navigation textIf you already have I style.css, just copy your css into the child theme I provided and that should keep your css changes.
Yes, just copy the folder into /wp-content/themes folder and activate the theme.
Forum: Fixing WordPress
In reply to: change font navigation textHi again Zedonk!
I include a link to a child theme I have created for you. Download that and activate it. https://www.dropbox.com/sh/r8aab21sx16f7yr/AADM53FIqoVGZg4UzJiznzzva?dl=0
Hope that helped you out.On your other problem. Try adding the class selector of “home” in front to select only the home page.
Like this:
.home .site-title a { text-indent: 100%; white-space: nowrap; overflow: hidden; background: url(https://test.zedonk.net/wp-content/uploads/2015/08/ZEDONK_RGB-300x97.jpg) center no-repeat; background-size: 100%; display: block; margin: 0 auto; width: 300px; height: 97px; }
Cheers
?yvind
[Signature moderated]Forum: Fixing WordPress
In reply to: sticky navbarHi Karwan Mino!
Try adding this css to your child theme:.home { margin-top: 15%; } .site-header { position: fixed; background: whitesmoke; top: 0; right: 0; left: 0; z-index: 99; } .menu-toggle { margin-top: 5%; }
Get back to me if you need any more help. Glad I could help you, Karwan.
Cheers
?yvind
[Signature moderated]Forum: Fixing WordPress
In reply to: moving sectionsHi there Karwan Mino!
You can do this be adding the following css:hgroup { display: inline-block; float: left; margin-left: 2%; } @media screen and (min-width: 600px) { .main-navigation ul.nav-menu, .main-navigation div.nav-menu > ul { border: none; } .nav-menu li { float: right; margin-top: 20% } #site-navigation{ float: right; display: inline-block; } }
Be sure to either be using a child theme or a custom css plugin. I hope that this solved your problem.
Cheers
?yvind
[Signature moderated]Forum: Fixing WordPress
In reply to: change font navigation textHi Zedonk!
I didn’t mean to copy it into the css. What you need to do is to replace the code in template-tags.php inside the child theme, not in the parent. be sure to have the child theme as the active theme and link to the parent in the style.css
Cheers
?yvind
[Signature moderated]Forum: Fixing WordPress
In reply to: change font navigation textHi zedonk!
Yes, you just need to copy template-tags.php into your child theme. In your css file in the child theme link it to the parent and it should work. What does the buttons say now? What went wrong?Cheers
?yvind
[Signature moderated]Forum: Fixing WordPress
In reply to: change font navigation textHi there Karwan Mino!
Try adding this css to your child theme or custom css plugin:
hgroup { display: inline-block; float: left; margin-left: 2%; } @media screen and (min-width: 600px) { .main-navigation ul.nav-menu, .main-navigation div.nav-menu > ul { border: none; } .nav-menu li { float: right; margin-top: 20% } #site-navigation{ float: right; display: inline-block; } } .home { margin-top: 15%; } .site-header { position: fixed; background: whitesmoke; top: 0; right: 0; left: 0; z-index: 99; } .menu-toggle { margin-top: 5%; }
Did that solve your problem?
Cheers
?yvind
[Signature moderated]Forum: Fixing WordPress
In reply to: change font navigation textHi Zedonk!
In order to do this you need to modify the template-tags.php file inside the theme folder>inc, be sure to change the file in your child theme, not you parent theme.
The code you need to change is this part:
<?php previous_post_link( '<div class="nav-previous">%link</div>', _x( '<span class="meta-nav">←</span>?Previous Post', 'Previous post link', 'intergalactic' ) ); next_post_link( '<div class="nav-next">%link</div>', _x( 'Next Post?<span class="meta-nav">→</span>', 'Next post link', 'intergalactic' ) ); ?>
Change it to this:
<?php previous_post_link( '<div class="nav-previous">%link</div>', _x( '<span class="meta-nav">←</span>?Previous', 'Previous post link', 'intergalactic' ) ); next_post_link( '<div class="nav-next">%link</div>', _x( 'Next?<span class="meta-nav">→</span>', 'Next post link', 'intergalactic' ) ); ?>
It is a fuction which displays the Next and previous post buttons. That’s why you need to go into this file.
Hope this was helpful.
Cheers
?yvind
[Signature moderated]Forum: Fixing WordPress
In reply to: 2MB file size limited uploadHave you tried to restart virtualbox (restart apache). This should apply the changes you made.
If that does not work there is two things you can do:
1. Edit the theme functions file.
Add the following code to the functions file:
@ini_set( 'upload_max_size' , '64M' ); @ini_set( 'post_max_size', '64M'); @ini_set( 'max_execution_time', '300' );
2. modifying Htaccess
Open or create the .htaccess file in the root folder and add this code:php_value upload_max_filesize 64M php_value post_max_size 64M php_value max_execution_time 300 php_value max_input_time 300
Hope one of these methods worked out for you ??
Cheers
?yvind
[Signature moderated]