CSS Customization Help for Adventure blog theme
-
Hi
I need help in changing the overall width and length of my blog to 640 x 426 (so that my header images will fit and not look blurry).
Any help would be appreciated. TIA!
The blog I need help with is: (visible only to logged in users)
-
Hi there, as long as your header is at least 2560 pixels wide by 800 pixels tall, they should look clear and crisp with Adventure no matter what the browser window or screen width is. The header image you are using right now, the water fall, is clear and crisp and resizes nicely.
-
The waterfall image is the default header image for the Adventure theme. All of the images that I have saved on my computer are 640 x 426.
I know that the header image is fixed in this particular theme. However, I wanted to know is there a CSS code that will change the width of the body?
-
Hi, use this to see what your site would look like with everything at 640px in width and the header image area at 640 x 426.
#wrap { max-width: 640px; margin-left: auto; margin-right: auto; } .feature-img { max-width: 640px; margin-left: auto; margin-right: auto; height: 426px; }This example would be what your site will look like with a 640px x 426px header image but with the site at the original width.
.feature-img { max-width: 640px; margin-left: auto; margin-right: auto; height: 426px; } -
Hi, I’m new with blogging, WordPress and obviously, CSS. I’m trying to customize the theme with some basic changes, and I also have the Adventure theme, I found your answer very helpful.
-
-
Hi again, I’m still trying color schemes and other minor changes to the Adventure theme, but I haven´t found how to change the text “follow me” in social bar of the front page; since my blog is in Spanish, I’d like to change the text to “Sigueme”. Other changes I’d managed to do with the Firefox developer tool, looking for the properties and then I’d made changes in the CSS editor of WordPress, but I haven´t any luck with that text. Any advice? If you need access to the blog, let me know.
-
Howdy, add the following to change the follow me text.
.home-social .title { visibility: hidden; } .home-social .title:before { visibility: visible; content: "Sigueme"; } -
-
-
Hi again, this time I would like to add a copyright line to the theme’s footer. I found that the code below works, but the line appears twice: first after the blog name “Candilejas” and the second after the text “Blog de WordPress.com. · El tema Adventure.” Obviously, I only need to have the copyright line once, preferably after the blog name and not after the “Blog de WordPress…” Any advice? Regards.
footer p:after { content:" copyright line "; } -
Hi, since the blog name and the WordPress and theme credits are both in paragraphs, we need to tell the browsers which paragraph we want the new content after. In this case, it would be the first paragraph within .footer and tell the browser to put the extra content after the first “p” element.
.footer p:nth-child(1):after { content: " My Copyright Here"; } -
-
- The topic ‘CSS Customization Help for Adventure blog theme’ is closed to new replies.