Giulio Daprela
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Montezuma] Border color as opposed to whole page colorHappy to see that you fixed the problem. I see the whole website with a white background color now, is that what you wanted? I noticed that at the bottom of the page the social icons have an arrow over them which is not very nice to see. Not sure if it is a problem of the social plugin you’re using but if you want to remove that strange arrows you cold try with this code
.hentry ul li i, .comment-text ul li i { display: none; }If the rule doesn’t work, add !important after the ‘none’ property.
As an alternative, try to see in the configuration options of your social plugin if there’s something about these strange arrows. When we become expert with CSS we tend to fix any problem with a custom CSS code while sometimes simply changing some options around could do the work!
Forum: Themes and Templates
In reply to: Increasing top of page marginI think you messed up your website. To make this changes you are not supposed to work on the original stylesheet, you should instead create a child theme and add the code to the custom CSS
Forum: Themes and Templates
In reply to: Increasing top of page marginI’m sorry I didn’t read well your post and I missed the site address.
This is the code that works on my pc:img.header-image { margin-top: 3%; }Change the percent rate if you want more or less space
Forum: Themes and Templates
In reply to: Increasing top of page marginI would prefer to have a link to the site where you need the modification. Going through all that CSS code is not fun, and I could end up not finding what’s the element to change
Forum: Themes and Templates
In reply to: [Pinboard] I DONT want my site responsive!@erikajosefine
I’m really sorry that this post turned into a flame, unfortunately I wasn’t able to follow the thread. In any case, I’ve looked at the website and in my opinion it would be less work (or at least the same) to turn it into a fully responsive theme than to turn it into a non-responsive one. The main problems are with the navbar and with the footer in my opinion, the slider is responsive, and also the header. The content boxes could be managed in a better way but they are fine enough.
It could be a good way for you to learn how responsive design works.Forum: Themes and Templates
In reply to: [Pinboard] I DONT want my site responsive!Maybe you should look for a non-responsive theme then. It’s impossible to turn a responsive theme into a non responsive one, it would involve too much work
Forum: Themes and Templates
In reply to: Suggestion for a theme to use – migrating site to WPI think it’s not hard to find a WordPress theme that fits your website layout. The responsive theme that is featured right now in the wordpress.org theme page (http://wordpress.org/themes/responsive) for example is perfect in my opinion. I’ve already used it, and it’s very easy to setup and customize
Forum: Themes and Templates
In reply to: [Iconic One] Full-width logoWe’ve come out with the same solution at the same time. That’s funny LOL 🙂
Forum: Themes and Templates
In reply to: [Iconic One] Full-width logotry with this custom CSS
.themonic-logo img{ width: 100%; }Let me know if it works
Forum: Themes and Templates
In reply to: [Iconic One] Full-width logoIt’s a bit difficult to explain, a link to your website would help. In any case, it probably all depends on how the media queries on your theme are setup. Maybe the media query for the largest screen is set for a fixed size
Forum: Themes and Templates
In reply to: [Customizr] remove Post Navigation from postsAre you referring to the ‘next’ and ‘previous’ links?
Forum: Themes and Templates
In reply to: [BresponZive] Paragraph Font Size: I'm not able to changeGo into your custom CSS and try to add this
p { font-size: NNpx; }Replace NN with the desired font size in pixels. This should affect all the <p> elements in your website. If you want to change only some of the elements you have to be more specific. Let me know if it works for you.
Forum: Themes and Templates
In reply to: [zAlive] Trouble creating the child theme@orbisius
I think that your plugin is very useful not only for those that aren’t technically skilled. It’s a real time saverForum: Themes and Templates
In reply to: Editing the content of a custom footerThat is great, I’m happy you did it. Removing the menu in fact it’s been a good idea, the page looks beautiful and the choice of colors in my opinion is perfect. Great job!
Forum: Themes and Templates
In reply to: Editing the content of a custom footerThe solution for this is using page templates. If you edit your page, you’ll notice that in the right sidebar you can choose templates. Each template gives a different layout to you page. Unfortunately, none of the standard templates eliminates just the main menu, you can choose a template (landing page) that eliminates menu and sidebars, and leaves only header and content. If you want to eliminate only the menu you must create a custom page template.
I’ve never created one, but if you have a bit of php knowledge I think you could do it by merging the landing page template with another template and by leaving out the menu section. If you’re not a WP coder it’s a matter of trial and error.