Phil
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Trouble with url webpanther.ch/homepage-erstellen-lassen-2/There is a funky little thing in WordPress where if you have a page with the same name, even if it isin the trash, it will append the -2 to the URL. Make sure you don’t have any other pages with the same name even if they are not published or in the trash.
Forum: Fixing WordPress
In reply to: css class for hiding post pic and titleHello,
I know that CSS can be tricky. In your CSS the I’d selector is the # symbol.
So you would use:#id
Instead of :
.id
Forum: Fixing WordPress
In reply to: How to know why something is in wp_footer?You want to do this in your child theme, so if the theme gets updated your changrs are not overwritten. You can use this in your child functions.php file http:// codex.wordpress.org/Function_Reference/wp_dequeue_script
Glad I could help.
Forum: Fixing WordPress
In reply to: How to know why something is in wp_footer?Can you search the entire theme folder for the file? Probably have to use the parent theme folder
Forum: Fixing WordPress
In reply to: add last updated and time and dateThere are template tags to all of theseach things. You can find info on all these in the codex. If your site is a genesis child theme you should seek support on their forum.
Forum: Fixing WordPress
In reply to: side bar doesn't show up in all pagesHello,
Most themes have multiple templates available for different layouts. If you click on view pages and then click edit for a specific page you should see an option over on the right hand side that allows you to choose different templates. That is where I would start.
Hope this helps!Forum: Fixing WordPress
In reply to: Error On Line 506 In Options.phpHi,
Have you recently installed any new plugins? If you have try deactivating them and see if this error disappears. Let me know if this resolves the issue.
PhilForum: Fixing WordPress
In reply to: How to know why something is in wp_footer?Hello,
Hope you are doing well, I know these things can be frustrating. Your theme can also place scripts into the footet. You can start by looking in your theme’s functiins.php file. It would be using wp_enqueue_script(the name of the js file would be in here)Let me know if this helps.
Cheers,
PhilForum: Fixing WordPress
In reply to: Add post Is in coding formatHow’s it going technite?
I’m wondering if you are talking about the two tabbed options at the top right of the visual editor when you are writing a post? If so, try clicking on those tabs and hopefully you will get the view you are looking for.
PhilForum: Fixing WordPress
In reply to: Image Size on MobileThe images will be as wide as the container they are in. So, probably yes, they will be as wide as the screen. If you have no CSS controlling the height than the wideimages should scale down and fit on the screen.
Forum: Fixing WordPress
In reply to: Image Size on MobileYou are correct in what is causing this problem. Setting the width to 100% and getting rid of the fixed height will make the images ‘responsive’ which means they will change size to fit the screen.
Let me know if this helps.Forum: Fixing WordPress
In reply to: How to remove space under navigation bar and above page header?Hello,
You are on the right path. You probably can fix this by changing the margin in your css file. You can use firebug or chrome developer tools to see what styles are applied to each element. Let me know if you need any other guidance.
PhilForum: Fixing WordPress
In reply to: Format widget area separator lines twenty fifteen childHello,
The CSS creating these lines can be found here
.widget_archive li, .widget_categories li, .widget_links li, .widget_meta li, .widget_nav_menu li, .widget_pages li, .widget_recent_comments li, .widget_recent_entries li { border-top: 1px solid #eaeaea; border-top: 1px solid rgba(51, 51, 51, 0.1); padding: 0.7667em 0; }You just need to change the border-top here to change those lines from grey to whatever you like.
Forum: Fixing WordPress
In reply to: Styling the loop – how does it work?Welcome to the world of WordPress! The place I would start is here:
https://codex.wordpress.org/The_LoopIt should get you going in the right direction. If you have more questions, hit up the forum again.
Thanks,
PhilForum: Fixing WordPress
In reply to: Center social links above sidebar?Hello,
What you need to do is to add some right-margin to the CSS. It looks like 95px is around the correct amount to push that element to the center of the sidebar.