Forum Replies Created
-
AuthorPosts
-
August 24, 2017 at 8:38 pm in reply to: Portfolio Pro – Move navigation below larger header image #210747ayktMember
if you're referring to your main navigation. you can modify your my_style.css file to include
'text-align: center;'
to your genesis-nav-menu class
ayktMemberYou can define the CSS for the category class you're targeting in the style.css file. You'll set your background image or colors in that class and then use that class in either the 'Custom Body Class' or 'Custom Post Class.'
If you're wanting to do it via functions.php you can write your own function that use a combination of the 'body_class' filter and is_category to change the background without using the custom body/post classes in the post options.
ayktMemberI found the documentation (I think) for the script you're using:
https://help.aweber.com/hc/en-us/articles/204027896-Can-I-Use-My-Own-Form-When compared to your source, you seem the have omitted the word 'custom' from the name of your input fields;
name and email are expected so they're not custom fields.make change:
<div><input name=”custom phone” type=”text” placeholder=”Phone” /></div>
<div><input name=”custom skype” type=”text” placeholder=”Skype” /></div>
<div><input name=”custom address” type=”text” placeholder=”City, Country” /></div>assuming, your database is setup to store those fields:
https://help.aweber.com/hc/en-us/articles/204027516-How-Do-I-Collect-More-Than-Just-Name-and-Email-Address-they should then be saved to your database
-John
-
AuthorPosts