Niko Vittaniemi
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Scrappy] Widen blog widthHey Melissa!
This could be easily done with using some modifications to CSS. May i ask a link to your site so i can take a peek to the code?
Forum: Themes and Templates
In reply to: [Custom Community] Remove lower menu?Good to hear that it worked! Oh there was a custom CSS option really nice!
Child Themes are the safest way to go since updates can wipe out the modifications ex. on major framework changes etc.I hope ya can but this code somewhere like a notepad and save for future reference maybe if something happens?
You can add notes above the code like this:
/*————This code does this————*/Glad you got it sorted out! ??
Forum: Themes and Templates
In reply to: [Custom Community] Remove lower menu?Oh nice looks intresting already! It’s rather easy to hide that menu with little css tweak.
For the changes to stay after ex. Theme update it’s smart to get a custom css plugin or use a child theme. If you already have one of the above or a place to put custom css this code could help you out with the menu problem.
#access { display: none; }
And this should help with the image. Intresting use of the logo area there btw!
#logo { float: left; padding: 0; }
Hope it helps ??
Forum: Themes and Templates
In reply to: [Pinboard] How to delete permalink , day date , categories ?Hey there rezareez,
Could you provide a link to your site? It would be easier to the helpful gals/fellows help you with this one ??
Forum: Themes and Templates
In reply to: [Sukelius Magazine] Changing the color behind the sliderHey there Covidesign,
Add this code to your child theme style.css. #802828 is the default color so you can just adjuct the hex color code to your needs.
#slider-container { background: none repeat scroll 0 0 #802828; }
Forum: Themes and Templates
In reply to: [Custom Community] Remove lower menu?Hey Quadrophenia,
Could you provide a link to your site? It would be helpful to see what menu do you mean.
Forum: Themes and Templates
In reply to: [Typo-o-graphy] Header picture has black around it..Hey there Stimpdawg,
Oh you just wanted the whole picture full screen. I thought you meant the wierd lines on just chrome. Just the upper image could work if you add like 1920 x 390 picture on there.
Really sorry about the confusion.
960px is the same width as the main area. 1920 width is abit over the regular area but it should scale down depending on visitors browser.
Forum: Themes and Templates
In reply to: [Typo-o-graphy] Header picture has black around it..Hey there Stimpdawg
You will need a custom css plugin or a child theme to achieve this safely so that future updates won’t ruin the changes.
When using child theme or a plugin those css codes will overwrite the parent and they should work. I guess the problem is that the code isn’t really overwriting the code.
You can actually do this also if that won’t work:
#header h1, #header h2 { font-size: 48px; margin: 5px 10px 0; padding: 38px 0 123px 0; background: url(images/header-btm.png) no-repeat center bottom; text-align: center; line-height: 0.9; -webkit-box-shadow: 0 0px 0px #000; text-shadow: 0 1px 1px #000; }
#header-desc { color: #ddd; padding: 0 10px 35px; margin: 0 auto 0; display: block; max-width: 600px; text-align: center; background: transparent url(images/header-desc.png) no-repeat bottom center; letter-spacing: 1px; -webkit-box-shadow: 0 0px 0px #000; text-shadow: 0 1px 1px #000; }
This is the line that is making that line on chrome ??
Default: -webkit-box-shadow: 0 1px 1px #000;
Modified: -webkit-box-shadow: 0 0px 0px #000;Hey there,
I’m not sure what has happened but occasionally when updating the theme menus get deactivated and you should go to Menus and choose the right menu possibly on the left upperside could be the option.
Forum: Themes and Templates
In reply to: [Typo-o-graphy] Header picture has black around it..Hey there,
If you have a custom css option or a plugin you can use these css codes and it should fix the problem.
#header h1, #header h2 { font-size: 48px; margin: 5px 10px 0; padding: 38px 0 123px 0; background: url(images/header-btm.png) no-repeat center bottom; text-align: center; line-height: 0.9; text-shadow: 0 1px 1px #000; }
#header-desc { color: #ddd; padding: 0 10px 35px; margin: 0 auto 0; display: block; max-width: 600px; text-align: center; background: transparent url(images/header-desc.png) no-repeat bottom center; letter-spacing: 1px; text-shadow: 0 1px 1px #000; }
Hope it helps! ??
Forum: Themes and Templates
In reply to: [LightWord] special categorie at own page@alchymyth gave out the right answer you should totally go for that one.
Forum: Themes and Templates
In reply to: Need to copy a child theme to a new siteYou can follow this video also how to do it on Bluehost if your not familiar with FTP. https://www.youtube.com/watch?v=kxtiQOgNiIg
You can also just upload the theme folders you have already to the new server /themes/. You don’t nessecarily need them as a .zip file.
If you wan’t to do excatly like in the video. Move the parent theme and the child theme to your computer and make 2 separate .zip files with right clicking your mouse (If your using windows 7). Then just use the video as a guide.
As @esmi said you have to set the theme setting again if there isn’t export/import option IN the theme settings. Same goes with the widgets.
Simple to just use copy paste with using 2 browser windows ??
Forum: Themes and Templates
In reply to: Increase post widthHey there,
If there is a custom css option in bueno this code should do the trick.
.entry { margin-left: -32px; overflow: hidden; width: 555px; }
Adjust the margin and width as you please ??
If there isn’t an custom css option i suggest you use a child theme. This way customications ain’t lost when the theme is updated or use a custom css plugin to do the same thing.
Hope it helps! ??
Forum: Themes and Templates
In reply to: [LightWord] special categorie at own pageHey there,
You seem to be mixing categories with tags witch are 2 different things. If you want to show a post inside a category it has to be clicked to that category not in the tags section.
You can see the difference in the url section example:
/category/vermietung/On the right you can see the Tags section
/tag/alltag/If you prefer to use the tag option include vermietung as a tag to those posts and make a menu that has the tag in url.
Url should look like this then:
https://www.sebastianguenther.eu/tag/vermietung/Forum: Themes and Templates
In reply to: Changing Navigation Links colorHey there,
After you have created the child theme or installed a custom CSS plugin as esmi nicely said you can include this code into the child themes style.css or into the custom css plugin..main-navigation ul.nav-menu, .main-navigation div.nav-menu > ul { background-color: #FFFFFF; border-bottom: 1px solid #EDEDED; border-top: 1px solid #EDEDED; display: inline-block !important; width: 100%; }