Allison Tarr
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to center-align logo in the Edin Theme?Hi Timna,
It looks like there’s a float on the parent div (
.site-branding). It looks if you remove the float on that and add margin: 0 auto to.site-logo, it will center it like you want.Forum: Fixing WordPress
In reply to: Remove menu buttonIf you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then do the following:
- Install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin
- use its “CSS Code” section of the dashboard to hold your CSS modifications
- (put your CSS code in)
- Save
I think perhaps the below will work. I think your menu button is controlled by a plugin which might be why it’s more difficult to find the proper selector.
.btn-toggle-nav { display: none; }Forum: Fixing WordPress
In reply to: Captions over thumbnailsAh, I see. Those images have a “title” attribute (https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/title) – You can update that following directions similar to this tutorial!
http://www.wpbeginner.com/plugins/how-to-easily-add-title-attribute-to-images-in-wordpress/
Forum: Fixing WordPress
In reply to: Drop Down Menu always openDo you have a live link to the issue?
It would most likely be caused by styling to the sub-menu – perhaps something is being overwritten by code elsewhere.Forum: Fixing WordPress
In reply to: CSS problem in Portrait Mode on Apple Iphone Only!The video player element on the bottom appears to not be responsive so it looks like the white is the account for that spillover.
Forum: Fixing WordPress
In reply to: Finding a hidden pageMaybe it just got lost from the nav menu?
Forum: Fixing WordPress
In reply to: i can not see my new post when i am not logged in into wordpressHave you double checked the visibility settings on your post?
Forum: Fixing WordPress
In reply to: Site Title IssueI believe this should be the code you’re looking to re-implement.
<title><?php /* * Print the <title> tag based on what is being viewed. */ global $page, $paged; wp_title( '|', true, 'right' ); // Add the blog name. bloginfo( 'name' ); // Add the blog description for the home/front page. $site_description = get_bloginfo( 'description', 'display' ); if ( $site_description && ( is_home() || is_front_page() ) ) echo " | $site_description"; // Add a page number if necessary: if ( $paged >= 2 || $page >= 2 ) echo ' | ' . sprintf( __( 'Page %s' ), max( $paged, $page ) ); ?> </title>Forum: Fixing WordPress
In reply to: Thumbnails appear darker than the original photoHave you tried deleting and re-uploading the photos? The photo you link to in the original link is a different one than the one that is linked to in the modal, which is why they appear different. Perhaps they’re just mislabeled?
Forum: Fixing WordPress
In reply to: Captions over thumbnailsNone of them seem to show the name of the recipe for me on hover. Are there specific examples of this still in place?
Forum: Fixing WordPress
In reply to: Cannot modify header information– serious problem!Hi Amin Ardani,
This is usually due to spaces, new lines, or other “extras” at opening/closing PHP file <?php tag or after a closing ?> tag. Have you been modifying any of your php files or perhaps adding new plugins?
Forum: Fixing WordPress
In reply to: Evolve widgets font size issueDo you have a link to where this issue is occurring?
Forum: Fixing WordPress
In reply to: Half the menu is goneHow many items are supposed to be in each menu? You have a lot of submenu items; have you double checked that the organization of them in the menu section is correct?
Forum: Fixing WordPress
In reply to: Pictures not showingAre the photos you linked to public or private? If they are private, they wouldn’t be able to be linked to in that fashion. I’m not familiar with Google Pictures usage but is it possible that isn’t part of it’s functionality?
Using the built in media library would be the most straight forward fix of this, I’m guessing.
Forum: Fixing WordPress
In reply to: How to change color of post paging textIf you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then do the following:
- Install this Custom CSS Manager plugin http://wordpress.org/plugins/custom-css-manager-plugin
- use its “CSS Code” section of the dashboard to hold your CSS modifications
- (put your CSS code in)
- Save
The CSS code you would insert would be the following – with the color you would like in place of the blue.
.paging-navigation a { color: blue; }