[Solved] can’t customize drop down menu

<select class=”selectnav” id=”selectnav1″><option value=”http://dig.katherineblumkin.com/#about-kikori”>About Kikori</option><option value=”http://dig.katherineblumkin.com/#kumamoto”>- KUMAMOTO</option><option value=”http://dig.katherineblumkin.com/#earth”>- EARTH</option><option value=”http://dig.katherineblumkin.com/#water”>- WATER</option><option value=”http://dig.katherineblumkin.com/#time”>- TIME</option><option value=”http://dig.katherineblumkin.com/#the-woodsman”>- THE WOODSMAN</option><option value=”http://dig.katherineblumkin.com/store-locator/”>Where to buy</option><option value=”http://dig.katherineblumkin.com/news-reviews/” selected=””>News</option><option value=”http://dig.katherineblumkin.com/recipes/”>Recipes</option><option value=”http://dig.katherineblumkin.com/tag/kikori-whiskey-review/”>Reviews</option><option value=”http://dig.katherineblumkin.com/contact/”>Contact</option></select> enter image description here 0 solved can’t customize drop down menu

[Solved] What is wrong with my jQuery code? Gives error that it’s not a function [closed]

Because $().value is undefined (not a function). The value property belongs to the HTMLInputElement DOM interface, jQuery objects don’t have any property or method by that name. jQuery objects provide the .val() method to set elements’ value property: $(‘.usp-title input’).eq(0).val(name); You may also get and set DOM element properties directly by retrieving a DOM element … Read more

[Solved] Space Gap on mobile devices

Alexandru Marica I’ve noticed that you fixed it. How did you do it? I used this CSS code #wrap_all { position: relative !important; } body { overflow:hidden; width:100%; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } solved Space Gap on mobile devices

[Solved] jQuery toggle() with dynamic div ID’s

This is the best way I could come up with: var divs = $(‘div[id^=”category-“]’); var num = divs.length; for (i=1; i<=num; i++) { $(‘<button class=”toggles” />’) .text(‘Toggle div ‘ + i) .appendTo(‘#divToAddButtonsTo’); } $(‘.toggles’).live(‘click’, function(){ var thisIs = $(this).index(); $(‘div[id^=”category-“]’).eq(thisIs).toggle(); }); JS Fiddle demo. Obviously this is run inside the $(document).ready(). References: attribute-starts-with ^= selector. … Read more

[Solved] How to use Python to login and detect error if the combination is wrong

Please note that when working with Python for web dev, it’s most convenient to use an already established framework, such as Flask which uses Werkzeug (simple and efficient). I suggest you read up on Python web development here https://docs.python.org/2/howto/webservers.html and head to http://www.codecademy.com and finish the Python course first if you are unfamiliar with how … Read more

[Solved] I want to make a call in php that will create an for each post? [closed]

As per the wordpress documentation. This should get you started: <ul> <?php $args = array( ‘posts_per_page’ => 5, ‘offset’=> 1, ‘category’ => 1 ); $myposts = get_posts( $args ); foreach ( $myposts as $post ) : setup_postdata( $post ); ?> <li> <a href=”https://stackoverflow.com/questions/21582661/<?php the_permalink(); ?>”><?php the_title(); ?></a> </li> <?php endforeach; wp_reset_postdata();?> </ul> And for further … Read more

[Solved] I don’t know what to do with this

OK guys , problem solved , it looks like the last time I updated my WordPress ,wasn’t completly done .. so I updated it manually and it was completly updated .. and now every thing works just perfect Thanks for your replys people .. it was honor talking to you. solved I don’t know what … Read more

[Solved] Make header responsive for different screen resolutions

You can use different images at different screen widths using css: @media only screen and (max-width: 1023px) { #tie-wrapper #theme-header { background: url(‘http://example.com/header-image_FULLWIDTH.jpg’) center center/cover no-repeat; min-height: 500px; width: 100%; } } @media only screen and (max-width: 767px) { #tie-wrapper #theme-header { background: url(‘http://example.com/header-image_LARGE.jpg’) center center/cover no-repeat; min-height: 400px; } } @media only screen and … Read more