Buttons
-
Basically, everything that’s in gray. Is there an easy css to take care of this?
Also things are posted on WP Stream by blog comes up as [No Title]. I don’t normally have the the title in the header in terms of how the display settings determine having the title, but even when I did add it, it still came up as no [No Title]
The blog I need help with is: (visible only to logged in users)
-
-
@, I answered you about the buttons in the other thread you started on this issue at: https://en.forums.wordpress.com/topic/move-margins-and-change-button-colors?replies=2#post-1703205 .
You can find the threads you have posted in, or started by clicking on your username at the top right of any forum page where it says, “Welcome, username”.
On the title issue, go back to Settings > General, add your site title and description back in and then add the following CSS to hide it from your site pages. That way it will show up for search engines and such, but not be visible to visitors.
#masthead #logo a, #logo a:hover, #masthead h2 { color: rgba(0, 0, 0, 0) !important; text-shadow: none; }It may take up to 24 hours or so for the title to start showing up on WP Stream. I would give it some time and see if it doesn’t show up.
-
-
Also, this is probably a month off, but I’m designer custom banner for the featured categories, will this be possible
-
Yes, that can be done with CSS by specifically targeting the category pages by page ID body class. When you are ready, upload your images to your media library and then give us a link to one of them and we can sort out the CSS for you. Sometime with responsive width themes it takes a little futzing to get them to work right, but we can do it.
-
I like the yellow, but didn’t realize it would effect chart colors.
is there a way to change this just for a single post?
-
-
Find the following in your custom CSS,
aside .widget, aside h3.widgettitle, tr { background-color: #FF9900; }And remove
, trand it will go back to the original grey color.If you wish to assign a different background color to the table rows, add the following and edit the color code as desired.
tr { background: none repeat scroll 0 0 #E2E2E2; } -
-
Also is there a way to sort of “Combine” themes? For instance, I really like how the 2014 does individual posts with, specifically with how it displays the featured image at the top.
-
No, you cannot combine themes. CSS cannot be used to add functionality. It is a styling document used by the browsers to position and style page elements.
Hmmm, I removed the the comma, space after and the “tr” so it looked like the following and all the sidebar and heading stuff stayed the orange, but the table went back to the standard grey.
aside .widget, aside h3.widgettitle { background-color: #FF9900; }I then added the following and turned your table a bright red.
tr { background-color: #CC0000; } -
It’s no worries. I am fine with gray.
Next step, a transparent background.
Thanks again for all the help :-)
-
-
If you are wanting the black around the header image to go away, add the following:
#masthead { background-color: rgba(0, 0, 0, 0) !important; } -
-
Are you talking about the thumbnail images in the recent posts? If so, the following will enlarge them to 150px in width (from 105). The images will lose some clarity and sharpness since the browser itself is doing then enlarging. 150px seems to work reasonably though without too much loss and still seems to work pretty well on phones in portrait orientation.
#recent-excerpts .wp-post-image { height: auto; width: 150px; }When you say, “slider” are you talking about the featured (lead) story at the top? What exactly are you wanting to do to it?
-
-
Assuming you want to increase the size of the image, give the following a try, pasting it in at the bottom of your custom CSS. I’ve used a media query to limit this change to 800px and wider screens and browsers because things go wonky with this change at narrower widths.
@media screen and (min-width: 850px) { #lead-story .item img, #lead-story a.lead-image { height: auto; max-width: 390px !important; width: 390px; } }
- The topic ‘Buttons’ is closed to new replies.