SomewhatRounded
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Remove Page Title from only one page?Hey SSSLilla,
Is it just one page, or a specific template page that you would like to remove the titles from?
For just a single page, you would have to add some conditional code; if it’s a template page, you should be able to copy and paste the original template php file from the parent theme to your child theme and remove the title by just deleting it out (it would look something like:
<h1><?php the_title() ;?></h1>Forum: Themes and Templates
In reply to: [Travelify] Loading logo to Site TitleI was going for simplicity, but Jesin’s answer is technically better if you still want your site title to be text (rather than an image) and especially if you’ll be making a lot of changes to the styling/default functionality of the theme (the stuff that can’t easily be modified in your theme/site’s settings)
Forum: Themes and Templates
In reply to: [Travelify] Loading logo to Site TitleHey Cheryl,
The theme only has an option to display a logo OR the text; the easiest way to work around that (if you want the logo as well as your site title/tagline) would be to just add the text into your logo image.
You can add a logo in the theme options (Appearance > Theme Options > Header Options).
Hopefully that helps!
Forum: Themes and Templates
In reply to: [Quark] Mobile content widthOh no! Are you editing the file using the wp editor?
Forum: Themes and Templates
In reply to: [Quark] Mobile content widthAdding what you want to the media query(s) in your stylesheet should do the trick!
Ex. If you want it to go when the screen width is 320px wide:
@media only screen and (max-width: 320px) { #maincontentcontainer { margin: 0; border: none; } }Hope that helps!
Forum: Themes and Templates
In reply to: [Designfolio] Sidebar padding for responsive theme?You could add a media query to just make the border disappear at a certain point. Something like:
@media only screen and (max-width: 750px) { .right { border-left: medium none; text-align: center; } }Hope that helps!
Forum: Themes and Templates
In reply to: Weird Logo Location ProblemsHey Tenacious Stu,
I think the issue is the height that’s set for the header in your style.css
If you change
height: 60px;to something likemin-height: 60px;it should work. Similarly, if you’d like the logo to stay the same size regardless of the window size, just add something likemin-width: 500px;(the width of your image, or smallest width you’d like it to appear as).Hope that helps!
Forum: Fixing WordPress
In reply to: Need address to re-download Cazuela theme