themediaship
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Text alignment is disabled on my posts pageSorry here is a better version of the link.
Forum: Themes and Templates
In reply to: [Customizr] Text alignment is disabled on my posts pageIn this post it “Your Headline” it’s right aligned, when I have it set to center.
Forum: Themes and Templates
In reply to: [Customizr] Links open in new window by defaultI found the solution to the problem.
I went into the customization mode.
Global Settings > Links style and effects > Open external links in a new tab.
I saw that was checked, I unchecked it and it fixed my issue. I guess the definition of external link means anything outside of the page / post, while maybe I was thinking it was anything out site of my actual website.
The good think is it still opens up any social media links in a new window which is perfect.
Forum: Themes and Templates
In reply to: [Eighties] Open non-homepages below header to show contentI am not currently using this theme as of the moment, I am running a business website so I went with something that let me do more with the menus and header image. Still an awesome layout though.
Forum: Themes and Templates
In reply to: [Eighties] Stopping Overlay When ScrollingI am not currently using this theme as of the moment, I am running a business website so I went with something that let me do more with the menus and header image. Still an awesome layout though.
Forum: Themes and Templates
In reply to: [Eighties] Videos & post imagesDo you have a link to your site so I can see what you are talking about more specifically?
Forum: Themes and Templates
In reply to: [Eighties] Open non-homepages below header to show contenttake a look at my site and let me know if this is what you are talking about.
Instead of adding another menu in the header, I created a smaller menue that sits above all the content on my page with hyperlinks to other portions of my website. It gives quicker access to other pages, doesn’t take up the header space, and with the a:hover tag activated setup up from the themes author, when you hover over the link it turns green letting people know you can click it.
my site is:
If this is what you are talking about than I can definitely help you.
Forum: Themes and Templates
In reply to: [Eighties] Blogroll Featured ImageDo you have a link to your site? I could probably help you with this.
Forum: Themes and Templates
In reply to: [Eighties] Mobile Site EditingI’d like to help, but I’m not sure about this question persay.
The layout of the site is responsive meaning the styling stays essentially the same on various screen sizes, minus some slight variations. In landscape mode on a mobile size with a comparable screen, you should see the layout just as it would be on a desktop, outside of your header. Depending on how big your header image is, it may squeeze to only show the middle portions.
Outside of that it’s all responsive.
Do you have a link to your site so I can see what you may be talking about?
– Cheers
Forum: Themes and Templates
In reply to: [Eighties] Headers Responsive to MobileDefinitely,
I’m using a child theme, so I inserted the code into the style.css of my child theme. If you don’t have a child theme I would recommend taking the time to make one.
This is the code I used to import the css files from the eighties parent theme.
‘@import url(‘../eighties/style.css’);’
Forum: Themes and Templates
In reply to: [Eighties] Headers Responsive to MobileI struggled with this for a long time. I think the idea of having an expansive header is awesome, but realistically it only looks good on computer screens for now. I’m not an expert, but if there was a way to change the image at certain breakpoints that would be amazing.
For the time being here’s what I did.
1. Got rid of the concept of using the full header space.
2. Disabled the parallax effect.
https://wordpress.org/support/topic/stopping-header-automation-on-scroll?replies=3
3. Created an image file that measured 700px x 650px.
4. Created this CSS code to coincide with the dimensions.
`#masthead {
background-size: 100% !important;
height: 500px !important;
max-width: 760px !important;
margin-left: auto !important;
margin-right: auto !important;
}’Here’s how it looks on my site:
This is simply what worked for me, albeit it’s not exactly what I wanted in terms of the header layout, but it is definitely responsive now. I’d rather see the full header on a phone and computer screen, so I was willing to give up the real estate size. I would like to see the theme have an option embedded on how to change the image out at different breakpoints, may be asking too much, but I’m still searching for other options. if I come across any other solutions, I’ll let you know.
Best of luck,
Cheers.
Forum: Plugins
In reply to: Element.style . i cannot how to delete it or modifyHi JLGP7,
I recently just had the exact same issue. In order to style “element.style” I had to do some digging. My issue was with a div element, but this is the code I would have used for your situation in my child theme to override the CSS from my parent theme.
.ngg-album-desc > a {max-width: 111px;}*Note: I was styling an id not a class
Let me know if it works for you.
– Cheers!
Forum: Themes and Templates
In reply to: [Eighties] Stopping Overlay When ScrollingHey guys I have conquered the issue, thanks for all the help =P!
Whew… I also also found the official term of the site style.. It’s called a… “Paraaallllax”… And guess what, it is controlled by JS in the header and has lots of different style elements and what not.
@ the theme author, “Stop laughing”. I’m pretty new to this. On the other hand, Kudos.. The thought process that goes into all the backend stuff is simply amazing.
In the end I was able to disable it without touching a lick of code thanks to this sweet plugin here:
https://wordpress.org/plugins/wp-remove-css-js/
My biggest fear was touching something without knowing enough. Thankfully the plugin showed me where to find what I was looking for, which really ended up being laughable because it was in my FTP client the whole time and I just failed to look. But all around the issue is..
SOLVED!
Forum: Themes and Templates
In reply to: [Eighties] Stopping Overlay When ScrollingWELP! I just found out that the overlay is what the menu does when you click on it. I have no idea what it’s called when the site header disappears, but that is still what I would like to stop. I like the menu option in the corner and how it works.
Forum: Themes and Templates
In reply to: [Eighties] Portfolio SetupThere is a portfolio theme template currently in the most recent version and version prior to it, but I have not used it personally used it enough to tell you the outcome.
I would say try the theme out if you have some time on your hands and mess around with the portfolio settings to see if it currently does what you want it to, or you might try creating a <div> tag and boxing the content in the manner you want.
If you’re not that great at CSS I would recommend the plugin, “short code columns” from codepress. It works excellent!
Hope this helps a bit!