How can I make these changes to the look of my blog page. 1. I would like it to be center align 2. The gray box that says the date, category, posted by, and comments- can I change the format? I would like it to be a white background and can it read something like this instead: "Colors By: Christine, 02/13/14 filed under: DIY" 3. Can I remove the "Read More" button 4. I installed the "Widget Logic" plugin and it won't allow me to ONLY show a widget on this Blog Page. Is there a restriction? I have used different things and it still doesn't work: is_page( ' 68 ' ), is_page( '68' ), is_page( 'Blog' ), is_page( 'Blog Page' ) AND nothing- any other suggestions. It works when I do it to other pages just not this one. 5. How can I change all my links to be a different color
Hello, 1. Could you please specify your issue with the help of screenshot images that which area you want to center align. 2. Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .content-bar .post .post_meta { background-color: white; color: black; } .content-bar .post .post_meta a { color: grey; } In place "black" and "grey" you can put your color or color code. 3. Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .content-bar .post .read_more { display: none; } This will remove the read more button from blog page. 4. For this you can try Dynamic Widgets plugin for this issue. Download it from the link given below and install it from the Plugins panel (Plugins ->Add New ->Upload) in your Dashboard. https://wordpress.org/plugins/dynamic-widgets/ See the link given below for reference http://www.inkthemes.com/easily-control-appearance-of-widgets-on-your-wordpress-pages/02/ 5. Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: a { color: red ! important; } In place "red" you can put your color or color code.