Steve
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Custom post type not obeying stylesOK.
How are calling the shortcode? Are you adding a [shortcode] to a page? If so, what’s inside the [ ]?
Forum: Fixing WordPress
In reply to: Custom post type not obeying stylesOK, I certain that query is selecting your members custom posts, but even that is not showing?
What step did you take in moving to a live environment? Did you resave your permalinks at the new location?
Forum: Fixing WordPress
In reply to: Custom post type not obeying stylesWhat is the custom post type name for your FAQ posts?
Is the code you posted the entire shortcode?Forum: Themes and Templates
In reply to: [Theme: Wire] Transparent left-menuOK, The reason for this is that the slider has been pushed right 200px by the padding in the following div:
.left-menu #main { padding: 0px 0px 0px 200px; margin: 0px auto; }
So you’ll need to change that to 0px.
Also the image has been pulled left by 200px in the following inline styled div:
<div id="rev_slider_7_1_wrapper" class="rev_slider_wrapper fullscreen-container" style="background-color: rgb(233, 233, 233); padding: 0px; height: 1097px; left: -200px; position: absolute; width: 1297px; max-height: none; overflow: visible;">
So you’ll need to change that as well.
Is this enough info for you to make the changes?
Regards,
Steve.
Forum: Fixing WordPress
In reply to: Custom post type not obeying stylesHi Rikardo,
I’ve had a look at your FAQ page.
Please correct me if I’m wrong, but the query you posted above does not look like a query for your FAQ page.
In fact it seems to match your about / team page?
This has me a bit confused?
Regards,
Steve.
Forum: Themes and Templates
In reply to: [Theme: Wire] Transparent left-menuHi Baris,
I’ve just had a look at your page.
I just need to understand the look you want to achieve.
When you say left menu transparent, what are you expecting to see underneath?
Regards,
Steve
Forum: Fixing WordPress
In reply to: Custom post type not obeying stylesHi,
Could you post a url to the page, so that we can see what is being served to the browser?
Regards.
Forum: Themes and Templates
In reply to: [Fukasawa] Change color of page titleNo worries ??
Forum: Themes and Templates
In reply to: [Fukasawa] Change color of page titleI’ve just looked at your page again and I can not see any additional code?
What did you type?
Forum: Themes and Templates
In reply to: [Fukasawa] Change color of page titleHave you tried add the color style where I suggested?
The title elements have a class attribute of ‘post-title’, search for that and find this rule:
.post.single .post-title { font-size: 2em; line-height: 120%; font-weight: 700; margin-bottom: 40px; }
And then add the color to that.
Forum: Themes and Templates
In reply to: [Fukasawa] Change color of page titleSorry my bad!
If I’m understanding you correctly now, I can see no .post-content h2 elements for your rule to target?
If you want to change the color of the titles on those pages, try adding your color style to the rule ‘.post.single .post-title’ rule on line 878 of the style.css?
Forum: Themes and Templates
In reply to: [Minamaze] Minamaze Menu Text ColourOn line 604 you should see:
#pre-header .header-links .sub-menu { position: absolute; display: none; background: none repeat scroll 0% 0% #1A1A1A; z-index: 9999; }
This is controlling the background color of that sub-menu.
On line 610 you should find:
#pre-header .header-links .sub-menu li { border-top: 1px solid #222; }
Which controls the border line between sub menu items.
Another border is being controlled by this rule on line 613:
#pre-header .header-links .sub-menu a { border-right: 1px solid #222; min-width: 100px; padding: 5px 15px; box-sizing: border-box; }
Add a color: rule here to override the current color of the sub menu text.
Regards
Forum: Themes and Templates
In reply to: [Fukasawa] Change color of page titleHi,
videosdemadurasx, I think anniekdenboer may be referring to the titles of the menu links.
anniekdenboer, on line 297 of your style.css you will find:.main-menu a { color: #999; }
If you change the color there, you should affect links title.
Regards
Forum: Fixing WordPress
In reply to: wordpress sites editingHi,
If you add ‘/wp-admin’ to you website home address in the address bar, it will take you to a login screen. Enter your login details and if successful you’ll see the admin dashboard.
Regards,
Steve.
Forum: Themes and Templates
In reply to: [Minamaze] Minamaze Menu Text ColourHi,
The following rule should change the menu link text to black:
#pre-header .header-links li a { color: #000; }