Adding ads to existing theme

No, I haven’t fallen off the face of the earth (if anyone was wondering, which you probably weren’t – but in case you were). I’ve just been busy with life and everything that comes along with. That said, my project of redesigning the site has not completely left me. So here I am – long after the last, to continue on!

index-img-themes

Here you can see the index.php from my themes folder. My goal is to first make room for my ads. About half way down you will see a div with the id class of “padbox”. I’m gonna start there and see what the page does when I toss responsive ad code in there:index-img-themes2
*as always, make a copy of your index.php before editing and uploading just in case everything goes wrong – I also added a line of code near the closing body tag – *

index-img-themes3

index-img-themes4

So now our index.php has a couple of ads on it. Make sure to also edit the album.php, image.php and search.php. At this point, my goal is to just get my ads on the page as well as my analytics code. Lets go ahead and toss that in too between the opening & closing head tag.

Once I get these in line, I will focus in on the actual css to restyle the page – but for now I’m just trying to get some of my usually-forgotten basics in.

It’s almost overwhelming to think about the gallery page as a whole right now. No new pictures have been added, most of them still need edited through the zenphoto admin control panel (description, name, tags, etc). So much to do, so little time. Now I gotta go the the grocery store, so I’ll shoot another update at a later time. Sorry for the seemingly dragging of my feet – it’s not intentional!

Side note: this is not exactly where I wanted to end, but this is the progress I’ve made in the last half hour. Busy, busy, busy!

Advertisement

Zenphoto: playing around with the css

So I have used gallery3 project as my gallery portal since 2013, though
the developers have stepped back from it and I was left reluctantly
dragging my feet to find a new method for displaying the gallery section
of soft-graphix.

Zenphoto is an option on my host, and after a quick bit of research, I
decided to give them a try. Reviews looked promising, the community was
active and there are some nice examples of what their gallery is capable
of. In fact, the more I use it, the more excited I am about using it
(although at this point, I’m knee-deep in migrating the existing files
from the gallery3 project to zenphoto – that and my daily life leaves me
with very little time!).

So this post is primarily my learning process in minor css editing to
change the general look of my new gallery page. First, it should be
noted that I copied the default theme page (make sure you activate this theme in http://YOUR-WEB-SITE.com/zp-core/admin-themes.php); we’ll be working off of that.

Here’s a snippet of code from the index.php file:
========================================================

<body>
<?php zp_apply_filter(‘theme_body_open’); ?>

=========================================================
The css for this is located in:
/clickandbuilds/ZenPhoto/themes/YOUR FOLDER*/styles
In my case, “YOUR FOLDER” is copy_of_default

zenphoto-folder

I’m using the default light.css theme. Here’s the default style for:

#main {
text-align: left;
margin: 20px auto;
width: 685px;
background: #fff;
padding: 20px 30px 70px;
border-top: 1px solid #E6E6DF;
border-right: 1px solid #E6E6DF;
border-bottom: 5px solid #E6E6DF;
border-left: 1px solid #E6E6DF;
}

orig-gallery
==========================================================

Lets see what happens when we change the width:
#main {
text-align: left;
margin: 20px auto;
width: 100%;
background: #fff;
padding: 20px 30px 70px;
border-top: 1px solid #E6E6DF;
border-right: 1px solid #E6E6DF;
border-bottom: 5px solid #E6E6DF;
border-left: 1px solid #E6E6DF;
}

100percent
==========================================================

Awesome. So I have located the css to make style changes. At this point, I’m going to end this post (and hopefully remember to continue to the next step) and eat dinner.

My next step is actually going to be to head back to step one and start fresh on ANOTHER complete over-do of my main page as well as continue down the path of migrating images and adding title, tags & descriptions.

So here I leave it, a mess as usual. Setting a deadline for myself: have site redone by this weekend, including styling new gallery page.

#websitefail – aughh

Balancing family, work, home, hobbies and anything else into your daily life can be a challenging task. In an ideal world, those things would all mesh together like bread and butter – In an ideal world. In reality, you tend to drop at least one of those things because 24 hours just simply is not enough. My ‘hobby’, for lack of a better term at the moment, is what I’ve left on the floor for a few weeks, or maybe months. So when a bit of inspiration collide with a quick ‘fashonable’ thought, I jump to it (causing my list of ‘things to do today’ to drop into chaos might I add). I’m sure you have all been there too. You get this grandiose  idea that in hindsight is not so grandiose after all.

websitefail

And all this babble leads us to the main context of this post, my incomplete website that I wrote gleefully about last post (check it out here: http://soft-graphix.com/2015sgx.html) The only thing I have left to do that I originally envisioned is the fonts; however I’m so displeased with the result that I think I’m just going back to the drawing board and in a whole new direction.

I did want to share this with you though. Even though I’m going to scrap it and start from scratch I still learned some very cool technique and wanted to share that in case this attempted site inspires anyone else.

Have you had a #websitefail you want to share?

New site: Thoughts and so sorry, it’s been awhile

 So it’s been awhile since my last post… Sorry! I feel like life has been keeping me busy, so busy in fact that I think a whole year has swept past and I’ve neglected WordPress and blogging in general.

Completely unhappy with my google analytic results I’m back to the drawing board on my site – this time working with a responsive layout (not completely unfamiliar with it).

As for my idea of a new layout I would like to remove my current navigation. I do not have alot to offer in terms of pages on my site so instead I would like to have the ‘buttons’ be more images – large images/buttons on a desktop that scale down considerably on a mobile device.

Here’s the desktop draft:

newsite-desktop

I’ve been hitting a wall trying to figure out how to scale the div’s within a container to 100% height with pure css (though I’ve read flexbox is a solution, still wrapping my head around it). At this point I have decided to have large screens display a height in px while the mobile will automatically respond – this probably is not the ‘recommended’ way for a responsive design, but it will work for the time being.

drafted mobile
newsite-smscreen
Here’s the css for desktop view:
@media only screen and (min-width: 768px) {
/* resize height of div */
.dtH350 {
height: 350px;
}
.dtH175 {
height: 175px;
}
}
and the html

< div class=”row” >
< div class=”col-3 dtH350″ >Free Photos< / div >
< div class=”col-6″ >
< div class=”col-6 dtH175″ >Illustrations< / div >
< div class=”col-6 dtH175″ >Nature< / div >
< div class=”col-12 dtH175″ >bottom< / div >
< / div >
…..
< / div >

What that does is size the divs at 350px (or 175px) height on screens with a min-width of 768px and drops that rule for anything smaller.
I’m going for something flashy, fingers are crossed that I can do it as envisioned.
Aside from that, I’ve also set seo goals for my page:
I would like to see at least a 10% increase in organic traffic within 45-60 days after this next update. The web market is actually very saturated with free photo sites. Hopefully once the search engines see my site is more mobile friendly, they will give me a slight boost in position.
I have also tried to be social some of the major social networks.
Will also add more content to my existing pages as well as toss in a few additional (at least that’s the current plan).

Photo A Day & Toledo Casino Night Charity Event Update

Updates since last post:

photo a day challenge

Photo A Day Challenge: One step at a time

Photo A Day Challenge
Been able to make it to day 5 so far: http://galleries.soft-graphix.com/

More info on charity event
I’ve been helping my sons high school parent staff association with a casino night in Toledo charity event. If you are in the Toledo, OH area and you are interested, more information can be found here: http://itstartslocal.com/

Brushing up on ye olde website

Well… It’s starting to look better. I did a few minor css changes and modified the header on soft-graphix.com and some tweaking to twitter & wordpress. At this point, I’m going to try and incorporate the chosen color (#35290f) to bring consistency across the various sites. I’m not entirely sure what my limitations are with WordPress, though I’ll put that thought on the back burner for the time being. The new theme that is in use now has a sans-serif font and a white background… so it’s closer than before.

draft

Now I can get back to taking pictures. Today I opened the fridge and snapped a shot. Not a great picture:

photo of fridge

On the checklist of things needed, a tripod. Because my hand is less-than-steady I opted for a high iso instead of a slower shutter speed. By doing that, I caused my picture to become very grainy indeed. I did run the image through a photo editing program to crop and add some different lighting techniques. The goal was to try and make an interesting image with the refrigerator. Came out kind of dark and bleak. Has a very ‘homemade’ feel to it.

Super honesty time

  • Website – Check
  • Photo Gallery – Check
  • Social Media – Check
  • Great look —– Not Checked

So I got all caught up in the whim of what my goal was… to get pictures uploaded, though in the process I let everything become jumbled and confused. Take a look below, this is the mess I have made:

inconsistent design & layout throughout my sites and social media.

inconsistent design & layout throughout my sites and social media.

So my next step will be creating a consistent feel throughout the sites. Step one: I will get some rough ideas together on paper. My main goal in this will be building consistencies throughout the sites. This probably means major changes but those changes are desperately needed, and at the end of the day, it will be worth it.