paulwpxp
Forum Replies Created
-
@drdebmv sorry for slow reply, I’m glad you figured it out 🙂
Forum: Themes and Templates
In reply to: [ColorWay] Blog on a separate pageIt sound more like a setting issue rather than theme issue.
Try going to menu setting, delete the existing menu item called Blog, and then assign the newly created page called Blog.
Forum: Themes and Templates
In reply to: Twenty Fifteen add logo to header?There is also a CSS only method
https://wordpress.org/support/topic/how-to-add-business-logo-as-header-at-top-of-left-side-tool-bar?replies=3#post-7054478Forum: Themes and Templates
In reply to: New DevelopmentThe file path and source code doesn’t look like a WordPress site.
For general CSS questions, try CSS forum, you will get faster help and more details on the subject.
I’m going to center the menu but I know how to do that… What I need help with is to figure out how to get the menu, hover etc. in it’s spot. Right now it looks like it’s been “padded” out of place…
From what I see via Firebug, the ul doesn’t have CSS applied so it’s using browser’s default which is normal for ul to have margin and that’s the padding that you see.
To fix this just declare your own in the CSS like this
#navigation > ul { margin: 0; }Forum: Themes and Templates
In reply to: Changing link-colors without changing the H1 colorAvada theme from some theme market? If so, it doesn’t support here.
https://codex.wordpress.org/Forum_Welcome#Commercial_ProductsBut anyway, in general, when we have something like this
<h1 class="myh1class"> <a>Some title here</a> </h>we can target the link
<a>and make change to its CSS properties and not have anything to do with the<h1>For example
.myh1class { color: black; } .myh1class a { color: pink; }Forum: Themes and Templates
In reply to: move up the content in the main areaThe space there is because of margin-bottom on #huge_it_widget-2 is not yet set to zero.
Forum: Themes and Templates
In reply to: move up the content in the main areaPlease also display none the .site-branding, it’s in my first answer.
Forum: Themes and Templates
In reply to: move up the content in the main areait’s id not class, so use this
#huge_it_widget-2 { margin-bottom: 0; }Forum: Themes and Templates
In reply to: move up the content in the main areaWe can just declare it in Custom CSS to override theme default (theme uses some widget class, so we use that specific widget id because we only want to make change to this one widget only).
Forum: Themes and Templates
In reply to: [Coraline] Removing Posted in and Tagged linesSince you have Jetpack installed, so make sure to enable the Custom CSS module and use this code below in its setting page (Edit CSS).
To remove all those lines from the front page including also the comment link (Leave a comment), use this code:
.home.blog .entry-info { display: none; }To keep the comment link, use this code:
.home.blog .cat-links, .home.blog .tag-links { display: none; } .home.blog .comments-link { overflow: hidden; }To further remove some more space between posts
.home.blog .hentry { margin-bottom: 30px; }(change 30px to your own)
Forum: Themes and Templates
In reply to: [Zerif Lite] Problem adding full width header image to Blog pageRight now that blog page is archive of posts in blog category (posts assigned with category = blog), so it doesn’t use template-blog.php page template.
To use a page template, we must first create a page (in this case, name is Blog), then assign the page template to it. To assign page template to a page, look over the right side of content area, the option is in a metabox called page attribute.
Forum: Themes and Templates
In reply to: move up the content in the main areaFirst of all, remove margin-bottom -100px from .site-header
then apply display none to the .site-branding
(optional) remove margin bottom (set to zero) of #huge_it_widget-2
Forum: Themes and Templates
In reply to: [Optimizer] Removing TagsThe class name of tag container is this .post_foot
https://themes.trac.wordpress.org/browser/optimizer/0.3.6/single.php#L59So we can use this code in Custom CSS (see theme option)
.post_foot { display: none; }If theme doesn’t have Custom CSS option, just install a Custom CSS plugin.
https://wordpress.org/plugins/search.php?q=custom+cssForum: Themes and Templates
In reply to: [Spacious] slider opacityUse this code in Custom CSS option, if theme doesn’t provide just install one of those Custom CSS plugin.
#featured-slider { background: #000; } #featured-slider img { opacity: 0.5; }The code is to darkening the image in slider section. Change the value
0.5to adjust darkness.On a sidenote though, if you want your logo to look more professional just output it (the original file) in png format. Use either png24 or png8, but this kind of image is best saved in png8. Right now it’s in jpg and it has that jpeg artifacts, it’s not crisp.
For all the text-on-image image, use png format. For photo image, use jpg.