mellyg
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Making a menu responsiveIt’s aniximander – a theme that comes with a lynda.com tutorial.
The navigation is currently not responsive so I am looking at ways to make it responsive – like in the way the attached tutorial has done it, just having some trouble implimenting it.
Forum: Themes and Templates
In reply to: Making a menu responsiveHave also tried the following code
<nav class="group"> <?wp_nav_menu(array('menu'=>'Header Menu'));?> <a href="#" id="pull">Menu</a> <nav><!--end of nav bar-->
Forum: Themes and Templates
In reply to: Making a menu responsiveThe line of code I am unsure of is below
<a href="#" id="pull">Menu</a>
Forum: Themes and Templates
In reply to: function for putting label inside input field in formsHi so I am trying to also insert the label into the input field into the mailchimp sign up form but having trouble. Does anyone know how I need to change the code below
[ Moderator note: please wrap code in backticks or use the code button. ]
<div class="mc-field-group"> <label for="mce-LNAME">Last Name </label> <input type="text" value="" name="LNAME" class="" id="mce-LNAME"> </div> <div id="mce-responses" class="clear"> <div class="response" id="mce-error-response" style="display:none"></div> <div class="response" id="mce-success-response" style="display:none"></div> </div> <div class="clear"><input type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe"></div> </form> </div>
Forum: Themes and Templates
In reply to: function for putting label inside input field in formsThanks for the reply – the only problem I had with that code was that the label didn’t show up untill the mouse was clicked inside the form. I got it to work with:
<p><label for=”your-name” class=”label-hidden”>Your Name (required)</label>
[text* your-name watermark “Your name (required)”]</p>Many thanks for your help.
Forum: Themes and Templates
In reply to: Changing the html of a footer widget newsfeedHi- yes I understand, unfortunatly I have gone too far and destroyed everything so looks like I will have to build it from scratch again..at least that way I will learn more.
Thanks a million for your help.
Forum: Themes and Templates
In reply to: Changing the html of a footer widget newsfeedIts the aniximander theme – it comes with a lynda.com tutorial, but the change I am trying to make doesn’t mention it.
Forum: Themes and Templates
In reply to: Changing the html of a footer widget newsfeedYeah, unfortunatly each news feed item has the same style as the entire widget areas…so was hoping to find where the newsfeed code was kept, but failing that I might just have to pull the whole thing apart.
Forum: Fixing WordPress
In reply to: Image file path when building on local server?Hiya, late reply but I wasn’t sure how to answer the question. If I upload images via the media uploader it works, below is one of the file paths – but these of course won’t work once I upload to the server.
Does that answer your question, and do you know what I am doing wrong?
<img src=”https://localhost:8888/wp-content/uploads/2013/08/quality_matters_logo.png”>
Forum: Themes and Templates
In reply to: [Tydskrif] change colorsThere may be an easier way to do it with your theme options but if not you can find the file style.css. In there find the code below:
a:link,
a:visited {
color: #a83446;
}Then you can change the colour code.
Forum: Themes and Templates
In reply to: An overiding style for linksYes – that worked, thanks a million.
Forum: Themes and Templates
In reply to: An overiding style for linksHeya thanks for the response.
Yes, that changed the links, the problem with it is that it changes the colour of all of the links in the nav bar, and I need them to be different.
There current style is below, but its not getting picked up. Any ideas?
nav a {
color:#FFF;
}Forum: Fixing WordPress
In reply to: Adding a blog to a websiteHeya, found this article
https://digwp.com/2013/01/display-blog-posts-on-page-with-navigation/ so all fixed now.Thanks for your help
Forum: Fixing WordPress
In reply to: Adding a blog to a websiteHeya Index page code is below, the code is the same as the other pages and I have added in the loop. (not sure if that is what I am supposed to do)
Thanks a million for your help
Forum: Fixing WordPress
In reply to: Adding a blog to a websiteHeya, thanks for getting back so fast.
So I have moved the front page to home-page.php – all worked fine.
But how do I make the ‘blog’ page have the posts? I have tried doing this in the reading list but no luck, its still connecting to the home page.